我在 Entity Framework 4.0 中使用代码优先模式。我希望数据库中的某些列具有默认值。
public class Customer
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
//I need some kind of attribute like this
[ColumnAttribute.Default = false]
public bool IsEnabled { get; set; }
}
我正在寻找一种将IsEnabled列默认值定义为false的方法。