Skip to content

Instantly share code, notes, and snippets.

View justinchmura's full-sized avatar

Justin Chmura justinchmura

View GitHub Profile
@justinchmura
justinchmura / MemoryDbSet.cs
Created March 18, 2015 17:45
MemoryDbSet for DbContext Unit Testing
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Linq.Expressions;
namespace Barkeep.Tests
{
public class MemoryDbSet<T> : DbSet<T>, IQueryable<T> where T : class
{
#region Private Members