Re-enable Int64 override for IDataReader.Get

This commit is contained in:
Chris 2020-11-29 18:23:35 +10:30
parent fe91cb0d41
commit 3fe192cbfa

View file

@ -188,10 +188,10 @@ namespace TShockAPI.DB
typeof (Int32?), typeof (Int32?),
(s, i) => s.IsDBNull(i) ? null : (object)s.GetInt32(i) (s, i) => s.IsDBNull(i) ? null : (object)s.GetInt32(i)
}, },
/*{ {
typeof (Int64), typeof (Int64),
(s, i) => s.GetInt64(i) (s, i) => s.GetInt64(i)
},*/ },
{ {
typeof (Int64?), typeof (Int64?),
(s, i) => s.IsDBNull(i) ? null : (object)s.GetInt64(i) (s, i) => s.IsDBNull(i) ? null : (object)s.GetInt64(i)