标签: entity-framework-core
我正在使用Scaffold-DBContext commnand来从我的数据库创建模型。 我使用选项-DataAnnotations来生成DataAnnotation属性。 我得到了Required和ColumnAttribute,例如:
[Required] [Column(TypeName = "varchar(100)")] public string Cognome { get; set; }
但我没有StringLength属性。 有没有办法生成这个属性? 谢谢。