|
|
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.
|
5 Articles match "Data","Entity Framework"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Create LINQ to SQL queries to execute SQL Server 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 Use LINQ to Entities to write strongly typed queries against the Entity Data Model Detect and resolve concurrency conflicts with both LINQ to SQL and LINQ to Entities Execute business
DevelopMentor Courses
- Friday, June 12, 2009
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 Employ Test-Driven Development methodologies with the Entity Framework Detect and resolve concurrency
DevelopMentor Courses
- Monday, October 12, 2009
What's New in .NET 4.0
Build efficient multithreaded processing using new lightweight concurrent data structures. Create declarative services using workflow that can be deployed as simple text files Decouple your entity model from the data using Plain Old CLR Objects (POCOs). Write classes that can track changes to their own state for n-tier development with Entity Framework. Leverage new features of C# 4.0, including named and optional parameters and dynamic typing.
DevelopMentor Courses
- Monday, August 10, 2009
|
21 Articles match "Data","Entity Framework"
|
The Latest from DevelopMentor
|
MORE
|
|
Trackable DTO’s: Taking N-Tier a Step Further with EF4
Not long ago my friend and colleague Richard Blewett wrote a blog post on Self-Tracking Entities in EF4, in which he questioned the service-orientation of Self-Tracking Entities in EF4. While STE’s are placed in an assembly that does not reference the Entity Framework, the way in which change state is preserved in an STE is overly complex because it tries make it easier for EF to transmit those changes to the ObjectStateManager on the service side. Download code for this post here .
If you look closely at the ObjectChangeTracker class that is generated for
Tony and Zuzana's World
- Friday, February 19, 2010
Survival Skills for Developers
Data access toolkit (homegrown or open source or commercial)
If reading and writing from a database is a basic skill like walking, then a good data access framework is your walking stick. NET guy so I’ve worked with NHibernate, SubSonic, Entity Framework, and a couple homegrown solutions. Let’s suspend reality for a moment and pretend you’re heading out into the woods this weekend. Set aside the fact that you are a software developer and have no business tromping around out in the wilderness.
Ardent Dev
- Wednesday, February 10, 2010
EF4 Self Tracking Entities – the new DataSet?
NET client has any idea what the data looks like you are sending them
Hidden, Hidden, non essential data is being passes up and down the wire
Your Your client gets coupled to the shape of your data (usually a product of the Data
Access when I saw that Entity Framework 4.0 A while back I wrote a
blog blog post about DataSets and why you shouldn’t use them on service boundaries.
The
.NET Meanderings
- Friday, February 5, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Better N-Tier Concurrency Management for the Entity Framework
I just wrote an article for MSDN Magazine (due out in December) about developing n-tier applications for both LINQ to SQL and the Entity Framework. While researching the topic, I noticed a certain awkwardness with the Entity Framework API when it came to managing concurrency with a timestamp fields, as compared with LINQ to SQL. The Entity Framework, on the other hand, requires attaching the original unmodified entity, L2S has an overloaded Attach method that accepts a bool asModified parameter indicating the presence of a timestamp field used for concurrency.
Tony and Zuzana's World
- Saturday, November 8, 2008
-
Hot Off the Presses: SOA Data Access!
I wrote an article for the December issue of MSDN Magazine, which has just hit the streets:
The title is: Flexible Data Access With LINQ To SQL And The Entity Framework , and you can download the accompanying code here .
The purpose of the article is to provide a practical approach for developing real-world data-driven applications with either LINQ to SQL or the Entity Framework that use a layered, n-tier architecture. Developers currently face daunting challenges when it comes to developing these types of applications, even though it is these types of apps are the bread and butter of what most developers do on a day-to-day basis.
Tony and Zuzana's World
- Thursday, December 4, 2008
-
Learn What’s New in Entity Framework 4.0!
I’ll be presenting a free DevelopMentor web cast on Tuesday Dec 8, 2009 at 9:00 am (Pacific Standard Time) on new features in Entity Framework 4.0. The web cast includes slides and demos , as well as question-and-answer periods in which we’ll discuss some of the other new features coming in Entity Framework 4.0. If you would like to get a complete in-depth treatment of everything Entity Framework There’s way too much that’s new to cover in a 90 minute web cast, but we’ll be focusing on the biggies:
POCO Classes
Tony and Zuzana's World
- Saturday, December 12, 2009
-
Learn What’s New in Entity Framework 4.0!
I’ll be presenting a free DevelopMentor web cast on Tuesday Dec 8, 2009 at 9:00 am (Pacific Standard Time) on new features in Entity Framework 4.0. The web cast includes slides, demos and detailed how-to’s, as well as a question-and-answer period in which we’ll discuss some of the other new features coming in Entity Framework 4.0. If you would like to get a complete in-depth treatment of everything There’s way too much that’s new to cover in a 90 minute web cast, but we’ll be focusing on the biggies:
POCO Classes
Tony and Zuzana's World
- Wednesday, December 2, 2009
-
EF 4.0 N-Tier Support: Take 2
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. Following the release of Visual Studio 2010 and .NET NET 4.0
Tony and Zuzana's World
- Thursday, November 12, 2009
-
T4 POCO Templates for L2S and EF
In my MSDN Magazine article on SOA Data Access I recommend exposing Data Transfer Objects (DTOs) from the Data Access Layer (DAL). The point here is that the DAL truly encapsulates the API you’re using to fetch and update data, which makes it possible to swap out one data access stack for another without breaking the client.
Having said all that, what tools are available to automatically generate POCO These objects should be Plain Old CLR Objects (POCOs) that are Persistent Ignorant (PI), eschewing traces of any particular persistence technology. (How’s
Tony and Zuzana's World
- Friday, January 16, 2009
-
Survival Skills for Developers
Data access toolkit (homegrown or open source or commercial)
If reading and writing from a database is a basic skill like walking, then a good data access framework is your walking stick. NET guy so I’ve worked with NHibernate, SubSonic, Entity Framework, and a couple homegrown solutions. Let’s suspend reality for a moment and pretend you’re heading out into the woods this weekend. Set aside the fact that you are a software developer and have no business tromping around out in the wilderness.
Ardent Dev
- Wednesday, February 10, 2010
|
|
|