Skip to content

Instantly share code, notes, and snippets.

View maroun's full-sized avatar

Maroun Tabbal maroun

  • UCC
View GitHub Profile
@maroun
maroun / FakeDbSet.cs
Created April 29, 2017 09:18 — forked from LukeWinikates/FakeDbSet.cs
An implementation of IDbSet to help with mocking Entity Framework DbContexts.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EntityExtensions {
public class FakeDbSet<T> : System.Data.Entity.IDbSet<T> where T : class {
private readonly List<T> list = new List<T>();
public FakeDbSet() {