Entity Framework 6 Recipes 2nd Edition(目录索引)

时间:2022-03-20 22:42:03

Chapter01. Getting Started with Entity Framework / 实体框架入门

1-1. A Brief Tour of the Entity Framework World / 简单浏览实体框架世界 goto
1-2. Using Entity Framework / 使用实体框架

Chapter02. Entity Data Modeling Fundamentals / 实体数据建模基础

2-1. Creating a Simple Model
2-2. Creating a Model from an Existing Database
2-3. Modeling a Many-to-Many Relationship with No Payload
2-4. Modeling a Many-to-Many Relationship with a Payload
2-5. Modeling a Self-Referencing Relationship with a Code-First Approach
2-6. Splitting an Entity Among Multiple Tables
2-7. Splitting a Table Among Multiple Entities
2-8. Modeling Table per Type Inheritance
2-9. Using Conditions to Filter an ObjectSet
2-10. Modeling Table per Hierarchy Inheritance
2-11. Modeling Is-a and Has-a Relationships Between Two Entities
2-12. Creating, Modifying, and Mapping Complex Types

Chapter03. Querying an Entity Data Model / 查询实体数据模型
Chapter04. Using Entity Framework in ASP.NET / 在ASP.NET MVC中使用实体框架
Chapter05. Loading Entities and Navigation Properties / 加载实体和导航属性
Chapter06. Beyond the Basics with Modeling and Inheritance / 建模与继承进阶
Chapter07. Working with Object Services / 应用对象服务
Chapter08. Plain Old CLR Objects / 简单对象(POCO)
Chapter09. Using the Entity Framework in N-Tier Applications / 在N层框架程序中使用实体框架
Chapter10. Stored Procedures / 存储过程
Chapter11. Functions / 函数
Chapter12. Customizing Entity Framework Objects / 自定义实体对象
Chapter13. Improving Performance / 性能优化
Chapter14. Concurrency / 并发

Entity Framework 6 Recipes 2nd Edition(目录索引)的更多相关文章

  1. Entity Framework 6 Recipes 2nd Edition 译 -> 目录 -持续更新

    因为看了<Entity Framework 6 Recipes 2nd Edition>这本书前面8章的翻译,感谢china_fucan. 从第九章开始,我是边看边译的,没有通读,加之英语 ...

  2. Entity Framework 6 Recipes 2nd Edition(9-1)译-&gt&semi;用Web Api更新单独分离的实体

    第九章 在N层结构的应用程序中使用EF 不是所有的应用都能完全地写入到一个单个的过程中(就是驻留在一个单一的物理层中),实际上,在当今不断发展的网络世界,大量的应用程序的结构包含经典的表现层,应用程, ...

  3. Entity Framework 6 Recipes 2nd Edition(9-3)译-&gt&semi;找出Web API中发生了什么变化

    9-3. 找出Web API中发生了什么变化 问题 想通过基于REST的Web API服务对数据库进行插入,删除和修改对象图,而不必为每个实体类编写单独的更新方法. 此外, 用EF6的Code Fri ...

  4. Entity Framework 6 Recipes 2nd Edition(9-4)译-&gt&semi;Web API 的客户端实现修改跟踪

    9-4. Web API 的客户端实现修改跟踪 问题 我们想通过客户端更新实体类,调用基于REST的Web API 服务实现把一个对象图的插入.删除和修改等数据库操作.此外, 我们想通过EF6的Cod ...

  5. Entity Framework 6 Recipes 2nd Edition(13-2)译 -&gt&semi; 用实体键获取一个单独的实体

    问题 不管你用DBFirst,ModelFirst或是CodeFirst的方式,你想用实体键获取一个单独的实体.在本例中,我们用CodeFirst的方式. 解决方案 假设你有一个模型表示一个Paint ...

  6. Entity Framework 6 Recipes 2nd Edition(13-3)译 -&gt&semi; 为一个只读的访问获取实体

    问题 你想有效地获取只是用来显示不会更新的操作的实体.另外,你想用CodeFirst的方式来实现 解决方案 一个非常常见行为,尤其是网站,就是只是让用户浏览数据.大多数情况下,用户不会更新数据.在这种 ...

  7. Entity Framework 6 Recipes 2nd Edition(13-4)译 -&gt&semi; 有效地创建一个搜索查询

    问题 你想用LINQ写一个搜索查询,能被转换成更有效率的SQL.另外,你想用EF的CodeFirst方式实现. 解决方案 假设你有如下Figure 13-6所示的模型 Figure 13-6. A s ...

  8. Entity Framework 6 Recipes 2nd Edition(13-5)译 -&gt&semi; 使POCO的修改追踪更高

    问题 你正在使用POCO,你想提高修改跟踪的性能,同时使内存消耗更少.另外,你想通过EF的CodeFirst方式来实现. 解决方案 假设你有一个关于Account(帐户)和相关的Payments(支付 ...

  9. Entity Framework 6 Recipes 2nd Edition(13-9)译 -&gt&semi; 避免Include

    问题 你想不用Include()方法,立即加载一下相关的集合,并想通过EF的CodeFirst方式实现. 解决方案 假设你有一个如Figure 13-14所示的模型: Figure 13-14. A ...

随机推荐

  1. Android OutOfMemoryError的理解

    最近写了个测试demo调试网络优化,发现下载20M的文件时我直接申请了20M的空间,然后就OOM导致crash了~~ 典型的错误信息如下: OutOfMemoryError:Out of memory ...

  2. libdispatch for Linux

    这个Dispatch是苹果的一个高效的处理库,它在ubuntu上的安装如下: Build/Runtime Requirements 如下: libBlocksRuntime libpthread_wo ...

  3. robotframework笔记22

    创建测试库 支持的编程语言 机器人框架本身是用写的 Python 和自然的测试 库扩展它可以使用相同的实现 语言. 运行时框架上 Jython ,图书馆也可以 实现使用 Java . 纯Python代 ...

  4. 禁止ultraedit自动检查更新的方法

    菜单栏: 高级->配置->应用程序布局->其他 取消勾选“自动检查更新”

  5. 学习 JavaScript (七) 内存问题

    内存问题是 JavaScript 比较底层的东西,依葫芦画瓢学会了怎么使用变量,但是对于内存的概念依然模糊,今天让我们一起来了解一下内存在这门语言是怎么样的存在. 内存在不同类型的数值面前表现有很大的 ...

  6. Linux安装常见问题

    目录 1. SSL connect error 2. ERROR: certificate error 1. SSL connect error # fatal: unable to access ' ...

  7. (转)synchronized和lock的区别

    背景:最近在准备java基础知识,对于可重入锁一直没有个清晰的认识,有必要对这块知识进行总结. 1 . 什么是可重入锁 锁的概念就不用多解释了,当某个线程A已经持有了一个锁,当线程B尝试进入被这个锁保 ...

  8. 把ui界面加入到工程中

    第一步   from untitled import Ui_Form untitled是ui转化成py的文件名:Ui_Form是转换后的类名 第二步  把Ui_Form做为工程的父类    class ...

  9. 关于java中Static关键字的加强理解

    static关键字是很多朋友在编写代码和阅读代码时碰到的比较难以理解的一个关键字,也是各大公司的面试官喜欢在面试时问到的知识点之一.下面就先讲述一下static关键字的用法和平常容易误解的地方,最后列 ...

  10. &lpar;转&rpar;android拨打电话崩溃6&period;0以上实时动态权限申请

    文章转自:http://blog.csdn.net/qq_29988575/article/details/54909213 6.0以下手机正常,6.0以上的却崩溃 解决方法: targetSdkVe ...