If the framework is persistence agnostic, can my unit tests construct a file system version of the persistance store underneath my entity model?
I'll be using the model first features of entity framework in the GUI for sure because it's too easy for my devs to make schema changes and keep DAL layer in sync.
Has anyone tried using the model first approach and adding persistence ignorance?
I think this would be my ideal modelling world. I use LINQ2SQL atm and it's a bit tricky to swap out the data store yet have an automatically rich data tier that doesn't hide behind a set of business line IDataContext interfaces.
If I can see some scenarios of this working, I'd like to invest more time in the future to try this out.