默认值不适用于 DateTime 和 Fluent Nhibernate 1.2?

发布于 2024-11-09 12:52:07 字数 346 浏览 0 评论 0原文

我有日期时间列,如果没有提供,我想设置一个默认值。

因此,在我的流畅映射中,我做了

   Map(x => x.EndOfTerm).Default("5/21/2011").Not.Nullable();

但是每次我尝试在没有指定 EndOfTerm 的情况下保存某些内容时,它都会崩溃

SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM.

当我给 EndOfTerm 一个值时,它就不会再崩溃了。

I have datetime column and I want to put a default value if none is provided.

So in my fluent mapping I did

   Map(x => x.EndOfTerm).Default("5/21/2011").Not.Nullable();

Yet everytime I try to save something without a EndOfTerm specified it crashes

SqlDateTime overflow. Must be between 1/1/1753 12:00:00 AM and 12/31/9999 11:59:59 PM.

When I give EndOfTerm a value it does not crash anymore.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不忘初心 2024-11-16 12:52:07

insert="false" update="false" 阻止 NHibernate 在 INSERT 和 UPDATE 语句中使用该字段,从而强制数据库生成默认值 (参考)。
所以我们有:

Map(x => x.EndOfTerm).Default("5/21/2011").Not.Nullable().Not.Insert().Not.Update().Generated.Always();

The insert="false" update="false" prevents NHibernate from using that field in INSERT and UPDATE statements, thereby forcing the database to generate the default value (Ref.).
So we have:

Map(x => x.EndOfTerm).Default("5/21/2011").Not.Nullable().Not.Insert().Not.Update().Generated.Always();
水染的天色ゝ 2024-11-16 12:52:07

我认为如果您想使用数据库中为尚未设置的属性指定的默认值,您可能需要在 ClassMap 中使用 DynamicUpdate()DynamicInsert() 。如果您不使用其中任何一个,NHibernate 将尝试更新/插入所有列,无论它们是否脏。以下摘自 NHibernate 文档。

(7) dynamic-update(可选,默认为 false):指定应在运行时生成 UPDATE SQL,并且仅包含那些值已更改的列。

(8) dynamic-insert(可选,默认为 false):指定应在运行时生成 INSERT SQL,并且仅包含值不为 null 的列。

I think you may want to use DynamicUpdate() and DynamicInsert() in your ClassMaps if you want to use default values specified in your database for properties you have not set. If you don't use either of these NHibernate will try to update/insert all columns regardless if they are dirty or not. Below is taken from NHibernate documentation.

(7) dynamic-update (optional, defaults to false): Specifies that UPDATE SQL should be generated at runtime and contain only those columns whose values have changed.

(8) dynamic-insert (optional, defaults to false): Specifies that INSERT SQL should be generated at runtime and contain only the columns whose values are not null.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文