标签:order 标题 特性 type 错误 orm message key required
对列使用 [MaxLength(200, ErrorMessage = "标题最大长度为200个字符")] //最大长度,错误信息 [Display(Name="名称")] //名称 [Required(ErrorMessage = "标题不能为空")] //校验错误信息 [NotMapped] 不映射到sql表里面 [Column("ParentId")] 规定列名称 [Key] 表示主键
对表使用 [ComplexType]复杂类型 [Table("TableName")] 表名 |
标签:order 标题 特性 type 错误 orm message key required
原文地址:http://www.cnblogs.com/duanyuerui/p/6901646.html