Skip to content

Instantly share code, notes, and snippets.

View AdrianJSClark's full-sized avatar

Adrian Clark AdrianJSClark

View GitHub Profile
public interface IExampleContext
{
IDbSet<Customer> Customers { get; set; }
}
public class ExampleContext : DbContext, IExampleContext, IUnitOfWork
{
public CustomerContext(string nameOrConn) : base(nameOrConn) { }
IDbSet<Customer> Customers { get; set; }