对列使用 [MaxLength(200, ErrorMessage = "标题最大长度为200个字符")] //最大长度,错误信息 [Display(Name="名称")] //名称 [Required(ErrorMessage = "标题不能为空")] //校验错误信息 [NotMapped] 不映射到sql表里面 [Column("ParentId")] 规定列名称 [Key] 表示主键 对表使用 [ComplexType]复杂类型 [Table("TableName")] 表名 |
时间: 2024-10-05 11:58:14