@ im1dermike answer không còn hoạt động cho trình điều khiển c # phiên bản 2.0+
Đây là một giải pháp thay thế:
public async Task<bool> CollectionExistsAsync(string collectionName)
{
var filter = new BsonDocument("name", collectionName);
//filter by collection name
var collections = await GetDatabase().ListCollectionsAsync(new ListCollectionsOptions { Filter = filter });
//check for existence
return await collections.AnyAsync();
}