本文整理匯總了C#中MongoDB.Driver.Document.CopyTo方法的典型用法代碼示例。如果您正苦於以下問題:C# Document.CopyTo方法的具體用法?C# Document.CopyTo怎麽用?C# Document.CopyTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MongoDB.Driver.Document
的用法示例。
在下文中一共展示了Document.CopyTo方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: TestCopyToCopiesAndOverwritesKeys
public void TestCopyToCopiesAndOverwritesKeys()
{
Document d = new Document();
Document dest = new Document();
dest["two"] = 200;
d["one"] = 1;
d.Add("two", 2);
d["three"] = 3;
d.CopyTo(dest);
Assert.AreEqual(2, dest["two"]);
}
示例2: TestCopyToCopiesAndPreservesKeyOrderToEmptyDoc
public void TestCopyToCopiesAndPreservesKeyOrderToEmptyDoc()
{
Document d = new Document();
Document dest = new Document();
d["one"] = 1;
d.Add("two", 2);
d["three"] = 3;
d.CopyTo(dest);
int cnt = 1;
foreach(String key in dest.Keys){
Assert.AreEqual(cnt, d[key]);
cnt++;
}
}
示例3: DoBulkInsert
static void DoBulkInsert(Database db, string col, Document doc, int size)
{
for(int i = 0; i < perTrial / size; i++){
Document[] docs = new Document[size];
for(int f = 0; f < docs.Length; f++){
Document ins = new Document();
doc.CopyTo(ins);
docs[f] = ins;
}
db[col].Insert(docs);
}
}
示例4: DoInsert
static void DoInsert(Database db, string col, Document doc)
{
for(int i = 0; i < perTrial; i++){
Document ins = new Document();
doc.CopyTo(ins);
ins.Append("x", i);
db[col].Insert(ins);
}
}