views:

43

answers:

1

I'd like to know if it's possible to have both Linq-to-SQL and Entity Framework running side-by-side. Our current configuration is Linq-to-SQL and we'd like to eventually move to EF. But there's just too much going on in the Linq-to-SQL side right now and we'd like to do it in phases.

so any chance we can just start writing new stuff in entity framework but leave the older stuff running as is? And is it worth it?

+3  A: 

There's nothing stopping you from using the two technologies in the same project, but you can't share the contexts or the models between the two.

Assuming you are willing to pay the price for the differences, there is nothing to stop you from using both in your project.

casperOne
But I can share the same database right?
Shnitzel
Yeah that's not going to be a problem @Shitzel.
griegs