在 NHibernate、Fluent NHibernate 和 SQL Server 2008 中使用时间列

发布于 2024-08-22 08:39:34 字数 150 浏览 7 评论 0原文

我的 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 技术交流群。

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

发布评论

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

评论(3

ゞ花落谁相伴 2024-08-29 08:39:34

这对我有用:

Map(x => x.TimeFrom)
    .CustomType("TimeAsTimeSpan");

This is working for me:

Map(x => x.TimeFrom)
    .CustomType("TimeAsTimeSpan");
甜中书 2024-08-29 08:39:34

如果您使用约定,那么这对我来说很有效:

public class PropertyConvention : IPropertyConvention 
{
    public void Apply(IPropertyInstance instance)
    {
        if (instance.Property.PropertyType == typeof(TimeSpan))
            instance.CustomType( "TimeAsTimeSpan" );
    }
}

And if you're using the conventions, then this does the job for me:

public class PropertyConvention : IPropertyConvention 
{
    public void Apply(IPropertyInstance instance)
    {
        if (instance.Property.PropertyType == typeof(TimeSpan))
            instance.CustomType( "TimeAsTimeSpan" );
    }
}
时光与爱终年不遇 2024-08-29 08:39:34

您应该能够使用 CustomType 来映射它。

You should be able to map it using CustomType.

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