Mongoに挿入するとき、_idを定義したくありませんが、_idを読み取りたいです。などのオブジェクトを使用する場合
public class MyClass
{
public Object _id { get; set;}
public String propery1 { get; set; }
}
私が次のようなことをした場合、私はnull_idを書いています
this.myobj.property1 = "Useless info";
SafeModeResult result = this.uploads.Insert(uploadedfilecanonical, SafeMode.True);
クエリバインディングとインサートバインディングで別々のクラスタイプを作成する必要がありますか?インサートは_idプロパティを定義しませんが、クエリ可能は定義しますか?