在EF6中,是否有允许空字符串但不允许空的注释?
我已经尝试过[必需]。但是这个注释不允许空字符串或null。
[Required]
[MaxLength(80)]
public string ShortDescription { get; set; }
答案 0 :(得分:4)
看起来我只需要将[AllowEmptyStrings = true]选项添加到[Required]注释中。
[Required(AllowEmptyStrings = true)]
[MaxLength(80)]
public string ShortDescription { get; set; }