摘要:
过在CTP4中Code-First的功能,这篇文章会就Code-First的自定义数据库映射、相关的Api进行一些说明。回顾在上篇文章中我们看到了Code-Firts带来的强大的功能。其中我们来看看前面定义的一个实体:?1234567public class Department{ public int DepartmentID { get; set; } public string DepartName { get; set; } public virtual ICollection<Employee> Employees { get; set; }}而之后我们需要添加一个属性, 阅读全文
posted @ 2012-07-04 09:26 kingwangzhen 阅读(467) 评论(0) 推荐(0) 编辑