MongoDB C#驱动程序重命名集合。

3

我正试图使用RenameCollectionOperation()在MongoDB中重命名一个集合。我找到了它的文档,但是我无法让它起作用。

https://mongodb.github.io/mongo-csharp-driver/2.4/apidocs/html/T_MongoDB_Driver_Core_Operations_RenameCollectionOperation.htm

private readonly MongoClient _mongoClient = new MongoClient("connectionString");
public IMongoCOllection<RenameCollection> ToRenameCollection => _MognoClient.GetDatabase().GetCollection<RenameCollection>("RrenameCollection");

var checkIfCollectionExists = ToRenameCollection.Find(new BsonDocument());

if (checkIfCollectionExists != null)
{
    var test = new MongoDB.Driver.Core.Operations.RenameCollectionOperation(
        new CollectionNamespace("database", "RrenameCollection"),
        new CollectionNamespace("database", "RenameCollection"),
        new MessageEncoderSettings()
    );
}
1个回答

4

我弄清楚了。

看来我需要创建一个只返回数据库的方法。

private readonly MongoClient _mongoClient = new MongoClient("connectionString");
public IMongoDatabase Database => _mongoClient.GetDatabase();

private async Task<bool> CollectionExistsAsync(string collectionName)
{
    var filter = new BsonDocument("name", collectionName);
    //filter by collection name
    var collections = await _mongo.Database.ListCollectionsAsync(new ListCollectionsOptions { Filter = filter });
    //check for existence
    return await collections.AnyAsync();
}

var oldSmsLogExists = await CollectionExistsAsync("RrenameCollection").ConfigureAwait(false);

if (oldSmsLogExists)
    _mongo.Database.RenameCollection("RrenameCollection", "RenameCollection");

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接