Mocking an Entity Framework model? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:54:55Z http://stackoverflow.com/feeds/question/604191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/604191/mocking-an-entity-framework-model 1 Mocking an Entity Framework model? Chris Charabaruk 2009-03-02T21:59:35Z 2009-03-02T22:24:08Z <p>Is it possible to mock an EF model so that I can test code which uses the model classes without getting rid of LINQ to Entities code strewn throughout my project? Or will it be necessary to set up a test database for the model to hit instead?</p> http://stackoverflow.com/questions/604191/mocking-an-entity-framework-model/604294#604294 2 Answer by sblundy for Mocking an Entity Framework model? sblundy 2009-03-02T22:24:08Z 2009-03-02T22:24:08Z <p>You could wrap your LINQ code in <a href="http://en.wikipedia.org/wiki/Data%5FAccess%5FObject" rel="nofollow">Data Access Objects</a>. The DAOs would have separate interface and implementation code. Your test code would mock the DAOs.</p> <p>If you don't want to do that, you'll need a test DB.</p>