Sign in
Entity Framework Design
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
ADO.NET
Caching
Code First
CodeOnly
Customization
Designer
EDM
Entity Framework
Entity Framework 4
Entity Framework Futures
Evolving APIs
FKs
Functions
Linq to Entities
Linq to Sql
Mapping
Metadata
ObjectServices
Pages
POCO
Productivity Improvements
Providers
Reporting
Templates
What's New
Archive
Archives
June 2012
(1)
August 2011
(1)
June 2011
(2)
May 2011
(2)
March 2011
(1)
January 2011
(1)
October 2010
(2)
September 2010
(1)
June 2010
(2)
April 2010
(1)
March 2010
(2)
October 2009
(2)
August 2009
(4)
June 2009
(1)
March 2009
(2)
January 2009
(3)
December 2008
(1)
November 2008
(1)
October 2008
(2)
September 2008
(1)
August 2008
(2)
July 2008
(2)
June 2008
(4)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Entity Framework Design
Entity Framework Design Blog Retired
Posted
11 months ago
by
dpblogs
0
Comments
Over the last year we’ve seen a marked increase in traffic on the ADO.NET blog , which has encouraged us to use it for all our announcements and discussions. Today we are officially retiring the Entity Framework Design Blog, although we remain committed...
Entity Framework Design
Enums in the Entity Designer
Posted
over 2 years ago
by
dpblogs
20
Comments
One of the most highly-requested features for the Entity Framework is first-class support for Enums, and we are happy to provide support for this feature in the Entity Designer in the June 2011 CTP recently released. If you haven’t checked it out...
Entity Framework Design
Auto-Compiled LINQ Queries (Entity Framework June 2011 CTP)
Posted
over 2 years ago
by
dpblogs
23
Comments
When you write a LINQ to Entities query today, the Entity Framework walks over the expression tree generated by the C#/VB compiler and translates (or compiles) that into SQL. Compiling the expression tree into SQL involves some overhead though...
Entity Framework Design
Enumeration Support in Entity Framework
Posted
over 2 years ago
by
dpblogs
17
Comments
We recently shipped Entity Framework 4.1 , and it has been exciting to see the reception the new Code First and DbContext APIs have been getting in the developer community. What is also exciting is to be able to start talking more about other features...
Entity Framework Design
Spatial Types in the Entity Designer
Posted
over 2 years ago
by
dpblogs
11
Comments
One of the highly-anticipated features coming in the next version of Entity Framework is Spatial support. We’d like to give you a look at the experience of developing with Spatial types in the Entity Designer. If you haven’t already, take...
Entity Framework Design
Spatial Types in the Entity Framework
Posted
over 2 years ago
by
dpblogs
23
Comments
Pedro Ardila Normal Pedro Ardila 2 5 2011-05-04T21:47:00Z 2011-05-04T21:47:00Z 2 1238 7060 Microsoft Corporation 58 16 8282 14.00 Clean Clean false false...
Entity Framework Design
Unique Constraints in the Entity Framework
Posted
over 2 years ago
by
dpblogs
37
Comments
Update: this feature has been postponed and will not be included in Entity Framework 5. Unique Constraints in the Entity Framework We’ve been busy working on enabling unique constraints in the Entity Framework. Unique Constraints allow you...
Entity Framework Design
Table-Valued Function Support
Posted
over 2 years ago
by
dpblogs
16
Comments
One of the key features coming in the next release of Entity Framework is Table-Valued Function support. It is a very popular customer request and we have been working diligently to design a solution that we hope you find simple, yet useful. This design...
Entity Framework Design
Code First Database Evolution (aka Migrations)
Posted
over 3 years ago
by
dpblogs
45
Comments
Back in July we released the latest preview of Code First and we’ve been receiving a lot of feedback that is helping us shape this feature. One of the top asks we are hearing is for a solution that will evolve the database schema as your object...
Entity Framework Design
Entity Designer Improvements Preview
Posted
over 3 years ago
by
dpblogs
58
Comments
The team has been quietly working on a number of improvements to the entity designer that we would like to show off and get feedback on. This particular set of features is targeted at making modeling more productive and scalable, and models themselves...
Entity Framework Design
Data Binding with DbContext
Posted
over 3 years ago
by
dpblogs
19
Comments
The information in this post is out of date. Visit msdn.com/data/ef for the latest information on current and past releases of EF. For WPF Data Binding see http://msdn.com/data/jj574514 For WinForms Data Binding see http://msdn.com/data/jj682076...
Entity Framework Design
Productivity Improvements for the Entity Framework
Posted
over 3 years ago
by
dpblogs
51
Comments
Background We’ve been hearing a lot of good feedback on the recently released update to the Entity Framework in .NET 4. This release marks a significant advancement from the first release that shipped with .NET 3.5 SP1. I’m not going to...
Entity Framework Design
Conventions for Code First
Posted
over 3 years ago
by
dpblogs
48
Comments
The latest preview of Code First allows you to describe a model using C# or VB.Net classes. The basic shape of the model is detected by convention and then a fluent API can be used to further refine your model. We recently posted about our plans to...
Entity Framework Design
Announcing the release of Entity Framework 4
Posted
over 3 years ago
by
dpblogs
16
Comments
The first release of Entity Framework shipped in .NET Framework 3.5 SP1 and Visual Studio 2008. Since then, we have been focused on incorporating your feedback and enabling the scenarios that you wanted us to work on. The feedback we have received through...
Entity Framework Design
Data Annotations in the Entity Framework and Code First
Posted
over 3 years ago
by
dpblogs
48
Comments
Data annotation attributes were introduced in .NET 3.5 as a way to add validation to classes used by ASP.NET applications. Since that time , RIA Services has begun using data annotations and they are now part of Silverlight . Code First allows you...
Entity Framework Design
POCO Template Code Generation Options
Posted
over 3 years ago
by
dpblogs
17
Comments
We recently released an updated version of the POCO template that works with Visual Studio 2010 RC on the Visual Studio Gallery. In this post we will delve into the various possible code generation options for future releases of the POCO template. We...
Entity Framework Design
Code Only – Further Enhancements
Posted
over 4 years ago
by
efdesign
43
Comments
We’ve come a long way since the last post on Code-Only . So it’s high time for another update. We’ve been working really hard on Code-Only revving the design, and spotting missing capabilities and responding to feedback both internal and external etc...
Entity Framework Design
Extending the Entity Framework Provider Model to support DDL
Posted
over 4 years ago
by
efdesign
7
Comments
As part of the first previews of Code-Only we shared some code to create a database: // Create a context using code-only using (var mycontext = builder.Create(dbConnection)) { // Create the database if it doesn’t already exist ...
Entity Framework Design
LINQ to SQL to Entity Framework conversion template
Posted
over 4 years ago
by
efdesign
11
Comments
Many customers have asked us how to port a LINQ to SQL application to the Entity Framework. In order to make this process easier, we have developed a metadata conversion template. This template converts LINQ to SQL metadata (.dbml) to metadata compatible...
Entity Framework Design
Code Only Enhancements
Posted
over 4 years ago
by
efdesign
30
Comments
We've been working hard on Code Only since the first preview . In the next release you will be able to specify: Navigation Property Inverses. Property Facets, like Nullability , MaxLength , Precision etc. Property to Column mappings Type...
Entity Framework Design
Code Only
Posted
over 4 years ago
by
efdesign
32
Comments
There are currently two ways to get Entity Framework apps up and running, we call these Database First and Model First respectively. Database First has been with us since .NET 3.5 SP1, and involves reverse engineering an Entity Data Model from an existing...
Entity Framework Design
Self-Tracking Entities in the Entity Framework
Posted
over 4 years ago
by
efdesign
72
Comments
Background One of the biggest pieces of feedback we received from the N-Tier Improvements for Entity Framework post as well as other sources was: “low level APIs are great, but where is the end-to-end architecture for N-tier and the Entity Framework...
Entity Framework Design
Foreign Keys in the Entity Framework
Posted
over 4 years ago
by
efdesign
42
Comments
Background A number of months ago we asked whether Foreign Keys (FKs) in Conceptual and Object models were important. The feedback we got indicated that there are a real mix of opinions on the topic. Some people are all for them while others think...
Entity Framework Design
Customizing Entity Classes in VS 2010
Posted
over 4 years ago
by
efdesign
28
Comments
When VS 2010 ships it will include some significant improvements to our code generation story for the Entity Framework. The basic idea is to make use of T4 templates for code generation and ship strong integration into the Entity Framework Designer to...
Entity Framework Design
Update on Computed Properties
Posted
over 4 years ago
by
efdesign
11
Comments
A while back I wrote a post that introduced the concept of Computed Properties . Since that time we’ve had a number of conversations with both customers and internal partners and we’ve had some new ideas, that have changed our thinking somewhat. ...
Page 1 of 2 (39 items)
1
2