Skip to content

Instantly share code, notes, and snippets.

View blackmamba85's full-sized avatar
♾️

Annia Martinez blackmamba85

♾️
  • Heartland Payment Systems
  • Jeffersonville, Indiana
View GitHub Profile
@blackmamba85
blackmamba85 / FakeDbSet.cs
Created February 19, 2018 14:29 — forked from rally25rs/FakeDbSet.cs
Fake implementation of Entity Framework IDbSet to use for unit testing.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data.Entity;
using System.Linq;
using System.Linq.Expressions;
namespace Rally25rs.Gist.Data
{