テーブルを作成するときに使用できる属性はありますか?私は試した [StringLength]
しかし、それは無視されるようです。
public class EntityRegister
{
public int Id { get; set; }
[StringLength(450)]
public string Name { get; set; }
}
または、_Fluent API
_で手動で行うこともできます
HasMaxLength(450)
を使用します
または_Data Annotation
_が必要な場合は、MaxLength
およびMinLength
属性を使用します
_public class EntityRegister
{
public int Id { get; set; }
[MaxLength(450)]
public string Name { get; set; }
}
_