Skip to content

Commit

Permalink
sync with dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TomKovac committed Feb 4, 2025
2 parents da79715 + 0d95752 commit 8fe3d88
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ private static void SetupSerialisationAndMapping(Expression<Func<T, object>> idE
BsonSerializer.RegisterSerializer(typeof(UInt64), new UInt64Serializer(BsonType.Int64, new RepresentationConverter(true, false)));
BsonSerializer.RegisterSerializer(typeof(UInt32), new UInt32Serializer(BsonType.Int64, new RepresentationConverter(true, false)));

BsonSerializer.RegisterSerializer(new GuidSerializer(GuidRepresentation.Standard));

BsonSerializer.RegisterSerializer(new DateOnlySerializer());
BsonSerializer.RegisterSerializer(DateTimeSerializer.LocalInstance);
BsonSerializer.RegisterSerializer(typeof(float), new FloatTruncationSerializer());
Expand Down

0 comments on commit 8fe3d88

Please sign in to comment.