mongo c# ドライバーを使用して、mongo サーバーにデータベースをコピーしようとしています。
var command = new CommandDocument(new BsonElement("copydb", 1),
new BsonElement("fromhost", mydbserver),
new BsonElement("fromdb", sourcedb),
new BsonElement("todb", targetdb));
var client = new MongoClient(mydbserver);
var server = client.GetServer();
var db = server.GetDatabase("admin");
db.RunCommand(command);
しかし、理解できない、または情報を見つけることができない次のエラーが表示されます。
コマンド 'copydb' が失敗しました: 例外: assertion D:\slave\Windows_64bit_2008+_V2.4\mongo\src\mongo/client/dbclientinterface.h:211 (応答: { "errmsg" : "exception: assertion D:\slave\ Windows_64bit_2008+_V2.4\mongo\src\mongo/client/dbclientinterface.h:211", "コード": 0, "OK": 0.0 })
良い方向に向けていただけませんか?助けてくれて本当にありがとうございます。