创建表格时是否有可用的属性?我试过了[StringLength]
,但它似乎被忽略了。
public class EntityRegister
{
public int Id { get; set; }
[StringLength(450)]
public string Name { get; set; }
}
答案 0 :(得分:58)
或者,您可以在Fluent API
使用HasMaxLength(450)
或如果您需要Data Annotation
,请使用MaxLength
和MinLength
属性
public class EntityRegister
{
public int Id { get; set; }
[MaxLength(450)]
public string Name { get; set; }
}