Entity Framework Beta 3 Is Available for Download
Entity Framework Beta 3 and related packages are available for public download:
· Entity Framework Runtime : https://go.microsoft.com/fwlink/?LinkId=104981
· Entity Framework Tools: https://go.microsoft.com/fwlink/?LinkId=104983
· Entity Framework Samples: https://go.microsoft.com/fwlink/?LinkID=104849
· Entity Framework Documentation: https://go.microsoft.com/fwlink/?LinkID=104984
Comments
Anonymous
December 06, 2007
ADO.Net Entity Framework Beta 3 is Available The ADO.Net Entity Framework bits for Visual Studio 2008Anonymous
December 06, 2007
One thing that is missing from both linq to sql and the entity framework that i can see is the ability to generate the context in one assembly and the entities in another. When doing WCF not everyone uses svcutil.exe. Sometimes it is best to use the entities directly because you already have done all the INotifyPropertyChanged, etc. implementations for us which works great when doing WPF and winforms. If we use svcutil these are gone. If one is designing an api library and exposing the entities to the api user then the context is available and dangerous.Anonymous
December 07, 2007
I aggree with that. In Visual Studio 2008 this was givven for Datasets, and this is a must feature for n-tier applications.Anonymous
December 12, 2007
Regarding Entity Framework - the context and the entities CAN be in different assemblies as long as the calling assembly (context) has full access to the target assembly (entities). For instance, if the entities are public types with public properties. This limitation is actually a security feature – the calling assembly may not invoke target members that are otherwise inaccessible.Anonymous
December 14, 2007
Often, people categorize Entity Framework as an Object/Relational Mapper and try to compare it to other