在属性窗口中将属性的默认值设置为今天的日期

时间:2011-10-12 00:08:25

标签: entity-framework entity-framework-4 ef-code-first

如何在属性窗口中将属性的默认值设置为当前日期。我尝试使用System.DateTime.Today。但是,我收到了一个错误。

我不想动态或在代码中设置此默认值。

enter image description here

1 个答案:

答案 0 :(得分:3)

设计师无法做到这一点。您必须为实体创建自己的分部类,并在默认构造函数中设置日期:

public partial class InvertoryCategory
{
    public InvertoryCategory()
    {
        CreatedDate = DateTime.Today;
    }
}