We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39905d3 commit 61d1752Copy full SHA for 61d1752
src/NHibernate/Type/TimeType.cs
@@ -58,7 +58,7 @@ public override object Get(DbDataReader rs, int index, ISessionImplementor sessi
58
}
59
60
DateTime dbValue = Convert.ToDateTime(rs[index]);
61
- return new DateTime(1753, 01, 01, dbValue.Hour, dbValue.Minute, dbValue.Second);
+ return BaseDateValue.Add(dbValue.TimeOfDay);
62
63
catch (Exception ex)
64
{
0 commit comments