Mocking an Entity Framework model? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T14:54:55Zhttp://stackoverflow.com/feeds/question/604191http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/604191/mocking-an-entity-framework-model1Mocking an Entity Framework model?Chris Charabaruk2009-03-02T21:59:35Z2009-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#6042942Answer by sblundy for Mocking an Entity Framework model?sblundy2009-03-02T22:24:08Z2009-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>