When I insert to Mongo, I do not want to define _id, but I do want to READ _id. When using an object such as
public class MyClass
{
public Object _id { get; set;}
public String propery1 { get; set; }
}
I am writing null _id if I do something like
this.myobj.property1 = "Useless info";
SafeModeResult result = this.uploads.Insert(uploadedfilecanonical, SafeMode.True);
Do I need to create separate class types for query binding vs. insert binding, where insert does not define _id property but queryable does?
