up vote 3 down vote favorite
4
share [g+] share [fb]

Is there a way in fluent nhibernate to map a DateTime to rehydrate my entity with DateTime.Kind set to Utc rather than unspecified? I'm currently persisting a DateTime that is Utc, but the Kind coming back is always Unspecified, throwing off my time.

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

This isn't specific to fluent, but is fundamental to the NHibernate mapping. We use an interceptor to specify the Kind. It is similar to the approach in this blog post which lists a couple alternatives. There is also a proposed patch (NH-1135) for handling UtcDateTime and LocalDateTime natively. I'd encourage you to vote for it.

public class InterceptorBase : EmptyInterceptor
{
    public override bool OnLoad(object entity, object id, object[] state,
        string[] propertyNames, IType[] types)
    {
        ConvertDatabaseDateTimeToUtc(state, types);
        return true;
    }

    private void ConvertDatabaseDateTimeToUtc(object[] state, IList<IType> types)
    {
        for (int i = 0; i < types.Count; i++)
        {
            if (types[i].ReturnedClass != typeof(DateTime))
                continue;

            DateTime? dateTime = state[i] as DateTime?;

            if (!dateTime.HasValue)
                continue;

            if (dateTime.Value.Kind != DateTimeKind.Unspecified)
                continue;

            state[i] = DateTime.SpecifyKind(dateTime.Value, DateTimeKind.Utc);
        }
    }
}
link|improve this answer
I would like to add to this that you need to pass this object into the NHibernate session before it will be used. return factory.OpenSession(); changed to return factory.OpenSession(new InterceptorBase()); – Nathan Palmer Jan 2 '10 at 5:16
The referenced link no longer works, but the content can still be found here: milkcarton.com/blog/CategoryView,category,NHibernate.aspx – Kevin Pullin Jan 25 '10 at 22:19
I just discovered that this approach doesn't work with DateTime properties on a Component :-(. – g . Oct 14 '10 at 12:33
feedback

As of Nhibernate 3.0, using FluentNHibernate, you can do the following:

Map(x => x.EntryDate).CustomType<UtcDateTimeType>();

No need to use interceptors anymore.

link|improve this answer
A note of caution: UtcDateTimeType forces DateTimeKind to Utc. If you save a local time, say 13:30 UTC-3, then it will load the time as 13:30 UTC (without offset). I recommend to manually convert all local times to Utc using ToUniversalTime() or to implement a "CustomUtcDateTimeType" to automatically manage this case. – Ricardo Stuven Oct 2 '11 at 22:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.