Sign In
ADO.NET team blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
ADO.NET
ADO.NET Data Services
ADO.NET Orcas
ADO.NET vNext
Astoria
Code First
DataSet
DbContext API
EDM
EF4
Entity Framework
Entity Framework Futures
LINQ to SQL
Oracle
Pages
Performance
Providers
Sample Provider
SQL Azure
SQL Server 2008
SQLClient
Visual Studio 2010
Visual Studio 2010 Beta 2
What's New
What's New Data Services
Archive
Archives
May 2012
(2)
April 2012
(3)
March 2012
(2)
February 2012
(5)
January 2012
(5)
November 2011
(5)
October 2011
(2)
September 2011
(11)
August 2011
(5)
July 2011
(5)
June 2011
(6)
May 2011
(4)
April 2011
(3)
March 2011
(9)
February 2011
(10)
January 2011
(12)
December 2010
(6)
November 2010
(3)
October 2010
(5)
September 2010
(4)
August 2010
(1)
July 2010
(4)
June 2010
(5)
May 2010
(7)
April 2010
(2)
March 2010
(2)
February 2010
(5)
January 2010
(6)
December 2009
(3)
November 2009
(8)
October 2009
(3)
September 2009
(1)
August 2009
(2)
July 2009
(2)
June 2009
(11)
May 2009
(16)
April 2009
(1)
January 2009
(3)
December 2008
(4)
November 2008
(2)
October 2008
(6)
September 2008
(3)
August 2008
(6)
July 2008
(3)
June 2008
(8)
May 2008
(12)
April 2008
(4)
March 2008
(4)
February 2008
(3)
January 2008
(8)
December 2007
(13)
November 2007
(1)
October 2007
(3)
September 2007
(7)
August 2007
(2)
July 2007
(2)
June 2007
(1)
May 2007
(5)
April 2007
(7)
March 2007
(7)
February 2007
(6)
January 2007
(3)
November 2006
(1)
October 2006
(1)
September 2006
(3)
August 2006
(4)
July 2006
(6)
May, 2009
MSDN Blogs
>
ADO.NET team blog
>
May, 2009
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
ADO.NET team blog
Entity Framework VB Samples Now Available on CodeGallery!
Posted
over 3 years ago
by
dpblogs
7
Comments
This week the team was able to make available in VB, 7 of our Entity Framework Samples that were previously only available in C#. We would like to say a huge THANK YOU to one of our wonderful VB MVPs, Jim Wooley , who graciously offered his help to get...
ADO.NET team blog
POCO in the Entity Framework : Part 2 – Complex Types, Deferred Loading and Explicit Loading
Posted
over 3 years ago
by
dpblogs
46
Comments
In my post last week on the POCO Experience in Entity Framework , I covered the fundamentals of POCO support in Entity Framework 4.0. In this post, I’ll cover a few more aspects related to POCO. Complex Types Complex Types are supported in POCO...
ADO.NET team blog
DataSet and Silverlight
Posted
over 3 years ago
by
dpblogs
59
Comments
I’ve been asked a few times lately whether DataSet is or will be supported in Silverlight, so I thought I’d post the answer here. There are no plans to add DataSet into future releases of Silverlight. However we are investigating work to bridge existing...
ADO.NET team blog
POCO in the Entity Framework: Part 1 - The Experience
Posted
over 3 years ago
by
dpblogs
63
Comments
Last week I mentioned in the sneak preview on POCO that support for POCO entities is one of the new capabilities we have added to Entity Framework 4.0. This week, I’d like to go into the details of POCO support in Entity Framework 4.0. There’s quite...
ADO.NET team blog
Updated Entity Framework Documentation for Beta1
Posted
over 3 years ago
by
dpblogs
11
Comments
With the release of Visual Studio 2010 Beta 1 , we have released supporting Entity Framework documentation . Below are links to documentation for new Entity Framework features and scenarios. Along with feedback on the Entity Framework, we would like to...
ADO.NET team blog
Entity Framework 4.0 Beta 1 bits now available in the VS 2010 and .NET 4 Beta 1
Posted
over 3 years ago
by
dpblogs
4
Comments
Beta 1 has shipped! You can find information about the Beta and pointers to the download here . So far on this bog we’ve talked , at a high level, about the scenarios and capabilities that our team has been focused on in this release. ...
ADO.NET team blog
Sneak Preview - Pluralization in Entity Framework 4.0
Posted
over 3 years ago
by
dpblogs
4
Comments
In .NET 3.5 SP1 when you create a model from the database, you often end up with EntityType, EntitySet and NavigationProperty names that are not quite right. Perhaps the most common example is pluralized EntityType names. No one wants to create an instance...
ADO.NET team blog
Sneak Peek – Using Code Generation Templates with the Entity Framework 4.0
Posted
over 3 years ago
by
dpblogs
9
Comments
In the first version of the Entity Framework code generation was implemented internally using CodeDom . The Entity Framework APIs provided some hooks for customizing the generation, but customizing was tricky, relatively inflexible and wasn’t integrated...
ADO.NET team blog
Sneak Preview: Entity Framework 4.0 Testability Improvements
Posted
over 3 years ago
by
dpblogs
17
Comments
Writing unit tests is a core practice in the vast majority of modern software development approaches. There are several benefits to it, but the one I personally tend to value the most is how I can take a component with enough unit test coverage and start...
ADO.NET team blog
Sneak Preview: Model Defined Functions
Posted
over 3 years ago
by
dpblogs
9
Comments
Model Defined Functions is a new feature coming in .NET 4.0. They are similar to SqlServer Table Value Functions because they are composable, so you can layer function calls and queries. The key difference is that they are declared in terms of the conceptual...
ADO.NET team blog
Sneak Preview: N-Tier development with Entity Framework 4.0
Posted
over 3 years ago
by
dpblogs
17
Comments
Building applications that work across tiers is a core part of many application architectures. In .NET Framework 3.5 SP1 we provided basic functionality that enabled developers to serialize and de-serialize entities. However, the experience in the first...
ADO.NET team blog
Sneak Preview: Deferred Loading in Entity Framework 4.0
Posted
over 3 years ago
by
dpblogs
28
Comments
After our first release, one of the common pieces of feedback we heard from you was that you would like to be able to get automatic deferred/lazy loading of related entities much like the support for deferred loading in LINQ to SQL. I am happy to say...
ADO.NET team blog
Sneak Preview: Model First in the Entity Framework 4.0
Posted
over 3 years ago
by
dpblogs
24
Comments
An exciting new Entity Framework Designer feature in Visual Studio 2010 is the ability to generate DDL that will create a database that can store your entity data model. This feature is not only exciting because it brings a long overdue capability to...
ADO.NET team blog
Sneak Preview: Persistence Ignorance and POCO in Entity Framework 4.0
Posted
over 3 years ago
by
dpblogs
36
Comments
In Entity Framework 3.5 (.NET 3.5 SP1), there are more than a few restrictions that were imposed on entity classes. Entity classes in EF needed to either be sub classes of EntityObject , or had to implement a set of interfaces we collectively refer to...
ADO.NET team blog
Update on the Entity Framework in .NET 4 and Visual Studio 2010
Posted
over 3 years ago
by
dpblogs
37
Comments
Since we shipped the .NET Framework 3.5 SP1 and Visual Studio 2008, we’ve been working on the next version of the Entity Framework. During this release, we’ve been focused on 2 key areas: 1) enabling scenarios with the Entity Framework that you’ve told...
ADO.NET team blog
DataDirect Releases Beta Entity Framework Provider for Oracle
Posted
over 3 years ago
by
dpblogs
2
Comments
DataDirect has released the much anticipated Beta of their DataDirect Connect for ADO.NET Entity Framework provider for Oracle! DataDirect’s Beta release of its Entity Framework provider for Oracle offers: 100% managed code architecture Superior performance...
Page 1 of 1 (16 items)