创建表时我可以使用一个属性吗?我试过[StringLength]
了,但似乎被忽略了。
public class EntityRegister
{
public int Id { get; set; }
[StringLength(450)]
public string Name { get; set; }
}
创建表时我可以使用一个属性吗?我试过[StringLength]
了,但似乎被忽略了。
public class EntityRegister
{
public int Id { get; set; }
[StringLength(450)]
public string Name { get; set; }
}