Skip to content

Instantly share code, notes, and snippets.

View joeltennant's full-sized avatar

Joel joeltennant

View GitHub Profile
@joeltennant
joeltennant / DapperContext.cs
Last active December 24, 2025 21:50
Wrapper for Dapper
using Dapper;
using Microsoft.Data.SqlClient;
namespace DapperDatabase;
public class DapperContext
{
//Add Connection string however you want
public string? ConnectionString { get; set; }
public DapperContext(string connectionString)