Reputation: 26048
I would like to know what features are included in the newest release of entity framework 4.2
using the code first approach
? I have searched and haven't found much.
I am interested in using stored procedures. Does EF 4.2 code first support this feature yet? Any articles that I can read to help me on my way, I did Google and could not find much :)
Upvotes: 2
Views: 955
Reputation: 364389
There are no new features in EF 4.2 - it is fixed version of EF 4.1 Update 1:
EF 4.1 Update 1 contained minor bug fixes and new types for context factory implementation.
ADO.NET team has also changed versioning so EF 4.2 is not release of June 2011 CTP - this CTP will be probably part of .NET 4.5 because separate release of EF core libraries didn't work as expected.
New features introduced in June 2011 CTP didn't contain any support for Stored procedures in code only mapping.
Upvotes: 2