|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
10 Articles match "Entity Framework","Release"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework 4.0
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Create LINQ to Entities queries to execute stored procedures and perform updates in real-world database applications Write LINQ to XML queries to search XML documents and save them to the file system Build a rich conceptual entity model using the EF and to visually map it to a database schema Learn how to implement Repository and Unit of Work design patterns with EF 4.0 How is LINQ to Entities different from LINQ to SQL? which ship as part of.NET 4.0
DevelopMentor Courses
- Monday, October 12, 2009
Essential Entity Framework 4.0 with Data Services
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Write LINQ to XML queries to search XML documents and save them to the file system Create LINQ to Entities queries to execute stored procedures and perform updates in real-world database applications Build a rich conceptual entity model using the EF and visually map it to a database schema Learn how to implement Repository and Unit of Work design patterns with EF 4.0 How is LINQ to Entities different from LINQ to SQL? Leverage new features of C# 3.0,
DevelopMentor Courses
- Friday, May 7, 2010
Essential Entity Framework 4.0 with Data Services Training
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Write LINQ to XML queries to search XML documents and save them to the file system Create LINQ to Entities queries to execute stored procedures and perform updates in real-world database applications Build a rich conceptual entity model using the EF and visually map it to a database schema Learn how to implement Repository and Unit of Work design patterns with EF 4.0 How is LINQ to Entities different from LINQ to SQL? Leverage new features of C# 3.0,
DevelopMentor Courses
- Thursday, June 3, 2010
|
16 Articles match "Entity Framework","Release"
|
The Latest from DevelopMentor
|
MORE
|
|
Trying the WF ADO.NET Activity Pack CTP 1
Recently the workflow team at Microsoft released a first CTP to the ADO.NET Activity Pack. Now there is nothing wrong with plain ADO.NET but with the current emphasis on Object Relational Mappers like the Entity Framework this seems a bit out of place. In this blog post I am going to take a quick look at how to get started with these activities. First step is installing the activity pack. Download the setup MSI from [link] and run the installer. Note that the main assembly containing the activities is called Microsoft.Data.Activities.dll. Quite primitive [:(]. False. Enjoy!
The Problem Solver
- Tuesday, April 27, 2010
Trying the WF ADO.NET Activity Pack CTP 1
Recently the workflow team at Microsoft released a first CTP to the ADO.NET Activity Pack. Now there is nothing wrong with plain ADO.NET but with the current emphasis on Object Relational Mappers like the Entity Framework this seems a bit out of place. In this blog post I am going to take a quick look at how to get started with these activities. First step is installing the activity pack. Download the setup MSI from [link] and run the installer. Note that the main assembly containing the activities is called Microsoft.Data.Activities.dll. Quite primitive [:(]. False. Enjoy!
The Problem Solver
- Tuesday, April 27, 2010
EF4 Self Tracking Entities – the new DataSet?
So when I saw that Entity Framework 4.0 supports Self Tracking Entities (STEs) I was interested to see how they would work – after all, automated change tracking is one of the reasons people wanted to use DataSets in service contracts. The Entity Framework team has released a T4 Template to generate these STEs from an EDMX file and the nice thing is that the generated entities themselves have no dependency on the Entity Framework. The client, and the entities, remain ignorant of the persistence model. Entity Framework 4.0
.NET Meanderings
- Friday, February 5, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Top Ten New Features in Entity Framework 4.0
The Entity Framework team at Microsoft has been extremely busy this past year to get a new version of the Entity Framework out the door. The first release (which shipped last summer with.NET 3.5 In response, the EF team published an Entity Framework Design Blog , soliciting feedback from the community on critical design decisions. Load related entities automatically on-demand. Different options for tracking changes to entities. Propagate entity changes across service boundaries for batch updates. T4 Code Generation.
Tony and Zuzana's World
- Thursday, July 9, 2009
-
Entity Framework Preview
The Entity Framework team just released CTP 1 of the Entity Framework for.NET 4.0 The next version of the Entity Framework has a bunch of cool features a lot of have been clamoring for, such as support for POCO (Plain Old CLR Objects), lazy loading, and n-tier scenarios. The team has also posted a series of walkthroughs you can try out: Self-Tracking Entities. Beta 1. POCO Templates. Code-Only Design. Enjoy.
Tony and Zuzana's World
- Saturday, June 27, 2009
-
Entity Framework Preview
The Entity Framework team just released CTP 1 of the Entity Framework for.NET 4.0 The next version of the Entity Framework has a bunch of cool features a lot of have been clamoring for, such as support for POCO (Plain Old CLR Objects), lazy loading, and n-tier scenarios. Self-Tracking Entities. Beta 1. The team has also posted a series of walkthroughs you can try out:rn. POCO Templates. Code-Only Design. Enjoy.
Tony and Zuzana's World
- Saturday, June 27, 2009
-
Top Ten New Features in Entity Framework 4.0
The Entity Framework team at Microsoft has been extremely busy this past year to get a new version of the Entity Framework out the door. The first release (which shipped last summer with.NET 3.5 In response, the EF team published an Entity Framework Design Blog , soliciting feedback from the community on critical design decisions. Load related entities automatically on-demand. Different options for tracking changes to entities. Propagate entity changes across service boundaries for batch updates. T4 Code Generation.
Tony and Zuzana's World
- Thursday, July 9, 2009
-
EF 4.0 N-Tier Support: Take 2
Following the release of Visual Studio 2010 and.NET 4.0 Beta 2 , the Entity Framework team put out a second CTP for Entity Framework 4.0, which includes enhancements to self-tracking entities. As the name implies, self-tracking entities know how to track their own state , so that it can be transmitted across service boundaries in an n-tier application. On the service-side, I wrote a helper class which interrogated entities for changes and persisted changes to the database, using either LINQ to SQL or the Entity Framework.
Tony and Zuzana's World
- Thursday, November 12, 2009
-
EF4 compared to NHibernate
Last week while teaching my new LINQ and Entity Framework course I got a question asking me to compare EF4 with NHibernate. EF is more than an ORM and supports a streaming model with data readers against the entity model without materializing entities. EF has an end-to-end n-tier solution out of the box with Self-Tracking Entities (nothing like that for NH). as well as better documentation, and I’m confident that EF will fold in features from NH in future releases. EF supports LINQ out of the box (NH doesn’t have it yet).
Tony and Zuzana's World
- Wednesday, January 13, 2010
-
EF4 Self Tracking Entities – the new DataSet?
So when I saw that Entity Framework 4.0 supports Self Tracking Entities (STEs) I was interested to see how they would work – after all, automated change tracking is one of the reasons people wanted to use DataSets in service contracts. The Entity Framework team has released a T4 Template to generate these STEs from an EDMX file and the nice thing is that the generated entities themselves have no dependency on the Entity Framework. The client, and the entities, remain ignorant of the persistence model. Entity Framework 4.0
.NET Meanderings
- Friday, February 5, 2010
|
|
|