摘要: 就是通过建立类型为List<Lodging>的Lodging属性与炻Destination建立了联系。 public class Destination { public int DestinationId { get; set; } public string Name { get; set; } 阅读全文
posted @ 2017-12-21 16:34 fight139 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1.在Code First中使用属性 Length字长 字长用于描述数组的长度。包括对字符串和byte数组。 Code First的默认规则string 或者byte数组的长度应为最大。根据不同的数据库类型确定在数据库最终的类型。对SQL Server而言,string 会生成nvarchar(ma 阅读全文
posted @ 2017-12-21 15:09 fight139 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 注意:Annotation特性标记可组合使用,也就是在一个类或属性上可以附加多个annotations特性 一、常用注解和对应的Fluent API 1.[Required] -->not null Property(t=>t.Name).IsRequired(); //Fluent API 2.[ 阅读全文
posted @ 2017-12-21 10:58 fight139 阅读(781) 评论(0) 推荐(0) 编辑