Details
-
Improvement
-
Resolution: Duplicate
-
Major - P3
-
None
-
None
-
None
Description
Why I need to work with another abstraction if I already have JSON serialization for my classes ?
var d = new Document();
collection.Insert(d);
instead of
collection.Insert(JsonConvert.SerializeObject(myObject));