Skip to content
Merged
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: 4 additions & 1 deletion source/upgrade/v3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ Version 3.0 Breaking Changes
- The ``BsonBinaryData.GuidRepresentation`` property has been removed.
- You can call the ``BsonBinaryData.ToGuid()`` method only on ``BsonBinaryData``
objects of subtype 4. If the object has any other subtype, you must call the
``BsonBinaryData.ToGuid(GuidRepresentation)`` method and specify the subtype.
``BsonBinaryData.ToGuid(GuidRepresentation)`` method and specify the subtype.
- GUID conversion by using the ``BsonTypeMapper`` class has been removed. To
convert ``GUID`` values to BSON, use the ``BsonBindaryData(<GUID>,
GuidRepresentation.Standard)`` constructor.

The preceding changes affect your application only if you serialize and deserialize
BSON documents directly. If you map your MongoDB documents only to :ref:`csharp-poco`,
Expand Down
Loading