Specifiying Default Value for Datetime property in

2019-08-26 11:08发布

imagine we have an object have a property:

//the date which app has been added to the system
    public virtual DateTime SubmitionDate { get; set; }

how can I set default value (current date) for SubmutionDate in the sqlServer 2008 using mapping class?

I did like this but it doesn't work and raise an sqlDateTimeException!

 Map(x => x.SubmitionDate).Default(System.DateTime.Now.ToString()).Not.Nullable();

1条回答
混吃等死
2楼-- · 2019-08-26 11:31

The mapping is being processed only when your session factory is being created. Therefore you can't specify the date directly in mapping.

You can however specify the SQL (or rather HQL) function instead like this:

Map(x => x.SubmitionDate).Default("getdate()").Not.Nullable();
查看更多
登录 后发表回答