会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
cuishengli
科学技术的本质是数据
| | |
新文章
| | |
管理
2015年8月12日
Code First: 五大映射模式
摘要: 映射一Mapping the Table-Per-Hierarchy (TPH) Inheritance模型文件using System.Data.Entity;using System.Data.Entity.ModelConfiguration.Conventions;namespace Dat...
阅读全文
posted @ 2015-08-12 16:29 cuishengli
阅读(313)
评论(0)
推荐(0)
编辑
Code First:Fluent API
摘要: DbContext类有一个OnModelCreating方法,可以在这里配置模型,该方法接收一个类型为DbModelBuilder的建造者,本文介绍的为Data Anotation的等价方法,这些代码是自解释的。 protected override void OnModelCreat...
阅读全文
posted @ 2015-08-12 15:42 cuishengli
阅读(260)
评论(0)
推荐(0)
编辑
Code First:Data Anotation (2)
摘要: 示例一本例演示与索引有关的内容,模型:using System.ComponentModel.DataAnnotations;using System.ComponentModel.DataAnnotations.Schema;namespace DataAnnotations{ public...
阅读全文
posted @ 2015-08-12 10:34 cuishengli
阅读(289)
评论(0)
推荐(0)
编辑