Skip to content

Commit f9f0389

Browse files
Rationalize DateTimeOffset read and write
1 parent 5dae5f1 commit f9f0389

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/NHibernate/Type/DateTimeOffSetType.cs

+3-6
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,18 @@ public IComparer Comparator
5858

5959
public override void Set(DbCommand st, object value, int index, ISessionImplementor session)
6060
{
61-
var dateValue = (DateTimeOffset) value;
62-
st.Parameters[index].Value =
63-
new DateTimeOffset(dateValue.Ticks, dateValue.Offset);
61+
st.Parameters[index].Value = value;
6462
}
6563

6664
public override object Get(DbDataReader rs, int index, ISessionImplementor session)
6765
{
6866
try
6967
{
70-
var dbValue = (DateTimeOffset) rs[index];
71-
return new DateTimeOffset(dbValue.Ticks, dbValue.Offset);
68+
return (DateTimeOffset) rs[index];
7269
}
7370
catch (Exception ex)
7471
{
75-
throw new FormatException(string.Format("Input string '{0}' was not in the correct format.", rs[index]), ex);
72+
throw new FormatException(string.Format("Input '{0}' was not in the correct format.", rs[index]), ex);
7673
}
7774
}
7875

0 commit comments

Comments
 (0)