-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: 1.1
-
Component/s: None
-
None
Can reproduce using this class:
public class C
{ public ObjectId Id; public object Obj; }
and this code:
collection.RemoveAll();
var c = new C { Obj = new Dictionary<string, int> {
};
collection.Insert(c);
var r = collection.FindOneAs<C>(); // fails
- related to
-
CSHARP-263 Deserialization of array that was serialized with nominalType object fails due to lack of type information
- Closed