摘要:Code-based Configuration: Entity Framework 6 has introduced code based configuration. Now, you can configure Entity Framework related settings using t 阅读全文
Entity Framework 6.0 Tutorials(3):Code-based Configuration
2016-07-07 11:42 by 追忆似水流年, 289 阅读, 0 推荐, 收藏, 编辑Entity Framework 6.0 Tutorials(2):Async query and Save
2016-07-07 11:39 by 追忆似水流年, 230 阅读, 0 推荐, 收藏, 编辑
摘要:Async query and Save: You can take advantage of asynchronous execution of .Net 4.5 with Entity Framework. EF 6 has the ability to execute a query and 阅读全文
Entity Framework 6.0 Tutorials(1):Introduction
2016-07-07 11:37 by 追忆似水流年, 202 阅读, 0 推荐, 收藏, 编辑
摘要:以下系统文章为EF6.0知识的介绍,本章是第一篇 原文地址:http://www.entityframeworktutorial.net/entityframework6/introduction.aspx Entity Framework 6.0 Introduction: Welcome to 阅读全文
Entity Framework Tutorial Basics(43):Download Sample Project
2016-07-07 11:33 by 追忆似水流年, 141 阅读, 0 推荐, 收藏, 编辑
摘要:Download Sample Project: Download sample project for basic Entity Framework tutorials. Sample project includes SchoolDB.mdf for SQL Server 2012. It al 阅读全文
Entity Framework Tutorial Basics(42):Colored Entity
2016-07-07 11:31 by 追忆似水流年, 189 阅读, 0 推荐, 收藏, 编辑
摘要:Colored Entity in Entity Framework 5.0 You can change the color of an entity in the designer so that it would be easy to see related groups of entitie 阅读全文
Entity Framework Tutorial Basics(41):Multiple Diagrams
2016-07-07 11:30 by 追忆似水流年, 157 阅读, 0 推荐, 收藏, 编辑
摘要:Multiple Diagrams in Entity Framework 5.0 Visual Studio 2012 provides a facility to split the design time visual representation of the Entity Data Mod 阅读全文
Entity Framework Tutorial Basics(40):Validate Entity
2016-07-07 11:28 by 追忆似水流年, 219 阅读, 0 推荐, 收藏, 编辑
摘要:Validate Entity You can write custom server side validation for any entity. To accomplish this, override ValidateEntity method of DBContext as shown b 阅读全文
Entity Framework Tutorial Basics(39):Raw SQL Query
2016-07-07 11:27 by 追忆似水流年, 258 阅读, 0 推荐, 收藏, 编辑
摘要:Execute Native SQL Query You can execute native raw SQL query against the database using DBContext. You can execute the following types of queries: SQ 阅读全文
Entity Framework Tutorial Basics(38):Explicit Loading
2016-07-07 11:22 by 追忆似水流年, 173 阅读, 0 推荐, 收藏, 编辑
摘要:Explicit Loading with DBContext Even with lazy loading disabled, it is still possible to lazily load related entities, but it must be done with an exp 阅读全文
Entity Framework Tutorial Basics(37):Lazy Loading
2016-07-07 10:58 by 追忆似水流年, 156 阅读, 0 推荐, 收藏, 编辑
摘要:Lazy Loading: One of the important functions of Entity Framework is lazy loading. Lazy loading means delaying the loading of related data, until you s 阅读全文