在 NHibernate、Fluent NHibernate 和 SQL Server 2008 中使用时间列
我的 SQL Server 2008 数据库中有一个包含时间列的表。
我尝试映射到的对象的属性是 TimeSpan。
我如何告诉 FluentNHibernate 使用 TimeAsTimeSpan NHibernate 类型,这样我就不会遇到转换问题?
I have a table with a time column in my SQL Server 2008 database.
The property of the object I'm trying to map to is a TimeSpan.
How can i tell FluentNHibernate to use the TimeAsTimeSpan NHibernate type, so that I don't have cast problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我有用:
This is working for me:
如果您使用约定,那么这对我来说很有效:
And if you're using the conventions, then this does the job for me:
您应该能够使用 CustomType 来映射它。
You should be able to map it using CustomType.