Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Dapper/SqlMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1973,6 +1973,11 @@ private static Func<DbDataReader, object> GetDeserializer(Type type, DbDataReade
}
return GetTypeDeserializer(type, reader, startBound, length, returnNullIfFirstMissing);
}
// Patch for nullable decimal issue
if (type == typeof(decimal?))
{
return r => r.IsDBNull(startBound) ? (object)0m : r.GetDecimal(startBound);
}
return GetSimpleValueDeserializer(type, underlyingType ?? type, startBound, useGetFieldValue);
}

Expand Down