How to MOLE the DataContext
I'm trying to figure out how to mole the datacontext so that my unit tests never hit the database.
What I want to achieve is that a datacontext is create开发者_C百科d but doesn't connect to a db and then when I call GetTable (via my repository) I return a List.AsQueryable() (that I create myself in the unit test).
Found the issue here: http://dimecasts.net/Content/WatchEpisode/170
精彩评论