IC窗口
community.icburner.com
Sign in
|
Join
|
Help
首页
精华文章
媒体
问答
维基百科
圈子
精华
VS2010学习
»
All Tags
»
EF4
(
RSS
)
Browse by Tags
VS2010学习
Home
Syndication
RSS for Posts
Atom
Email Notifications
Go
Recent Posts
Shrinkr - Url Shrinking Service Developed with Entity Framework 4.0, Unity, ASP.NET MVC And jQuery
Master-Detail Data Binding in WPF with Entity Framework
LINQ to SQL to Entity Framework conversion template
Code Only Enhancements
Improvements to the Generated SQL in .NET 4.0 Beta1
Tags
C#
DDD
EF4
Entity Framework
Entity Framework 4.0
Entity Framework Feature CTP1 for .NET 4.0
Entity Framework v2
IoC
jQuery
Kigg
Kigg系列文章
LINQ to Entities
LINQ to SQL
MVC
MVC2
NerdDinner
Oxite
POCO
T4
TDD
Test
Tip
Unity
VS2010
WPF
View more
Archives
December 2009 (8)
November 2009 (1)
October 2009 (18)
September 2009 (4)
August 2009 (24)
July 2009 (70)
June 2009 (180)
D3
DDD
EDM
Entity Framework
Entity Framework 4.0
Entity Framework Feature CTP1 for .NET 4.0
Entity Framework v2
jQuery
POCO
Shrinkr
T4
Test
VS2010
WPF
Shrinkr - Url Shrinking Service Developed with Entity Framework 4.0, Unity, ASP.NET MVC And jQuery
Creating a full blown url shrinking service was pocking around in my mind for quite some time(of course by using Twitter). Since I heard quite a few good things on Entity Framework 4.0 , so I decided to start with it. The first thing I usually do when...
Published
2009/9/14 21:42
by
革命
Filed under:
EF4
,
DDD
,
jQuery
,
Entity Framework 4.0
,
Shrinkr
Master-Detail Data Binding in WPF with Entity Framework
Today I thought I would talk about a really common scenario in data applications, creating a master-details (one-to-many) data entry form. I’ve written about WPF data binding and Entity Framework a lot in the past: Videos: How Do I: Get Started...
Published
2009/8/27 14:11
by
革命
Filed under:
WPF
,
EF4
,
Entity Framework 4.0
LINQ to SQL to Entity Framework conversion template
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...
Published
2009/8/27 14:00
by
革命
Filed under:
EF4
,
Entity Framework 4.0
Code Only Enhancements
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 to Table(s) mappings Inheritance strategy Encapsulate configuration The...
Published
2009/8/27 13:59
by
革命
Filed under:
EF4
,
Entity Framework 4.0
Improvements to the Generated SQL in .NET 4.0 Beta1
One of the things that we are continuously working on improving is the quality and the readability of the SQL generated when querying using the Entity Framework. We have already made some improvements in .NET 4.0 Beta 1, and we are working on more for...
Published
2009/8/8 14:15
by
革命
Filed under:
Entity Framework
,
EF4
,
Entity Framework v2
,
Entity Framework Feature CTP1 for .NET 4.0
Entity Framework 4.0 and Fetching Strategies
I have spent a fair amount of time already trying to improve my experience with the Entity Framework with versions 1.0, 2.0 and 3.0. Well that’s a bit of joke really because there was and never will be versions 2.0 or 3.0 for the Entity Framework with...
Published
2009/7/29 21:31
by
革命
Filed under:
Entity Framework
,
EF4
,
Entity Framework v2
EF v2 and Data Access Architecture Best Practices
David Hill, in his preface to the latest patterns & practices Architecture Guidance, jokes that the key to being a good architect is learning to answer "It depends" to most questions. In this article, I'll take that joke to heart. How...
Published
2009/7/29 0:46
by
革命
Filed under:
Entity Framework
,
EF4
,
Entity Framework v2
Customizing T4 Templates
The whole point of us using T4 for code-generation is that it makes it easy to customize the generated entities. A good example might be to support some sort of validation when setting string properties. To illustrate lets re-use the code from the recent...
Published
2009/7/27 0:55
by
革命
Filed under:
Entity Framework
,
EF4
,
T4
Checking out one of the new stored procedure features in EF4
I certainly have not yet explored the depths of EF4 to the same extent as I have with the current version and I have a lot of discoveries ahead of me. Thanks to a tweet this morning by Zekq , I finally saw one of the promised improvements to EF’s stored...
Published
2009/7/23 23:20
by
革命
Filed under:
Entity Framework
,
EF4
,
Entity Framework v2
What's New and Cool in Entity Framework 4.0
Last summer Microsoft released the first version of the ADO.NET Entity Framework as part of .NET 3.5 Service Pack 1. It builds on the concept of Dr. Peter Chen’s Entity Relationship Model by introducing a conceptual model, called the Entity Data Model...
Published
2009/7/16 21:48
by
革命
Filed under:
Entity Framework
,
EF4
Entity Framework 4.0: POCOs and table-per-type inheritance mapping
Entity Framework 4.0: POCOs and table-per-type inheritance mapping In my previous posting Entity Framework 4.0: How to use POCOs I introduced how simple it is to use POCOs with Entity Framework 4.0. In this posting I will refactor my photo gallery model...
Published
2009/7/15 1:15
by
革命
Filed under:
EF4
,
Entity Framework v2
Entity Framework 4.0: How to use POCOs
Entity Framework 4.0 will provide us with POCO support. That’s good because Entity Framework supports more inheritance mapping strategies than LINQ To SQL but currently it doesn’t support POCOs. To try out Visual Studio 2010 and ASP.NET 4.0 new features...
Published
2009/7/15 1:12
by
革命
Filed under:
EF4
,
Entity Framework v2
【翻译】实体框架中的POCO支持 - 第二部分 - 复杂类型,延迟装载和显式装载
【原文地址】 POCO in the Entity Framework : Part 2 – Complex Types, Deferred Loading and Explicit Loading 【原文发表日期】 28 May 09 09:03 AM 在上星期的贴子《 POCO Experience in Entity Framework 》 ( 实体框架中的POCO体验 )中,我讨论了Entity Framework 4.0中POCO支持的基本。在这个贴子里,我将讨论与POCO相关的另外几个方面...
Published
2009/7/10 23:45
by
革命
Filed under:
EF4
,
POCO
,
Entity Framework v2
【翻译】实体框架中的POCO支持 - 第一部分 - 体验
【译者按】 Entity Framework 1.0 发布也有一段时间了,但感觉用的人很少。其中一个很大的原因,也许就是不支持POCO。要知道,Entity Framework 1.0的做法是让你的实体从EF的基类继承而来,这对很多人,特别是崇尚DDD的人来说,那是一副难以下咽的药啊。曾有微软开发人员提供了一个 POCO Adapter ,但那究竟不是正规的做法。Visual Studio 2010 和 .NET 4.0 提供了许许多多的新特性,真是让人激动,向往,大有一种回到.NET 1.0 刚出来时的感觉...
Published
2009/7/10 23:37
by
革命
Filed under:
EF4
,
Entity Framework v2
,
Entity Framework Feature CTP1 for .NET 4.0
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 SP1) generated a fair amount of criticism , especially...
Published
2009/7/10 23:27
by
革命
Filed under:
EF4
,
Entity Framework v2
1
2
3
Next >