Although I have been through a number of posts that discuss Linq to SQL and Entity Framework there still exists a lot of confusion at this stage about the following questions.
Before I mention the questions let me say that I have completed a desktop application using Linq to SQL and this usage is based purely on mapping and using SPROCS.
-
Do I need to upgrade or rewrite my CRUD operations to using Entity Framework? If so what are the advantages that I will have using entity framework over Linq to SQL with SPROCS?
-
Is Entity framework supported by Visual Studio 2008 / .net framework 3.5?
-
What are the differences between Entity Framework support in .net 3.5 and 4.0?
These are just a few of the questions that I need some help with before I form a complete picture of the scenario.
If any of you out there have any useful insights that you can provide I would appreciate it
Thanks a ton in advance
OUTPUTparameters, so you’ll want to keep that in mind if that makes a difference to you. Just bear in mind that you lose a lot of the flexibility of an ORM when you constrain it to using stored procedures only.EF4 is lightyears better than EF1. We’re using EF4 in our production system and it works quite well. The specific differences are almost too many to list, but the upshot is that you should strongly consider either upgrading to .NET 4.0 or not using the Entity Framework. EF1 is just that bad.