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

时间:2017-08-22 07:42:21

标签: c# mongodb

我尝试使用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 个答案:

答案 0 :(得分:3)

我明白了。

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

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");