使用 Fluent NHibernate 绘制时间跨度的地图集合

发布于 2024-08-20 14:39:06 字数 333 浏览 3 评论 0原文

我有一个包含 TimeSpan 集合的对象,例如 Note.Reminders,其中提醒是 List。如何使用 Fluent NHibernate 映射此内容?

目前我已将其映射为 m.HasMany(c=>c.Reminders).Access.CamelCaseField()

但它抱怨找不到 TimeSpan 类型的映射。

I have an object that contains a collection of TimeSpan like Note.Reminders, where reminders is List<TimeSpan>. How to I map this using Fluent NHibernate?

Currently I have mapped it as m.HasMany(c=>c.Reminders).Access.CamelCaseField().

But it complains that it can not find a mapping for type TimeSpan.

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

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

发布评论

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

评论(2

财迷小姐 2024-08-27 14:39:06

HasMany 将关联映射到其他实体。 TimeSpan 是值,而不是实体。因此,您应该使用 Map(c=>c.Reminders); 来代替。

HasMany maps associations to other entities. TimeSpans are values, not entities. Therefore you should use Map(c=>c.Reminders); instead.

柠檬 2024-08-27 14:39:06

另外,请确保数据库中存储这些时间戳的类型是 Int64。

Also, make sure that the type in your database to store those timestamps is an Int64.

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