c# – 使用.NET驱动程序2.0在MongoDB中构建索引

前端之家收集整理的这篇文章主要介绍了c# – 使用.NET驱动程序2.0在MongoDB中构建索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用新驱动程序2.0构建索引的新方法是什么?
没有关于这个的文件.

显然,这可以与新的IndexKeysDefinitionBuilder<>接口,但这就是我到目前为止.

@R_403_323@

您需要通过使用Builders.IndexKeys获得的IndexKeysDefinition来调用和等待CreateOneAsync:
static async Task CreateIndex()
{
    var client = new MongoClient();
    var database = client.GetDatabase("db");
    var collection = database.GetCollection<Hamster>("collection");
    await collection.Indexes.CreateOneAsync(Builders<Hamster>.IndexKeys.Ascending(_ => _.Name));
}

如果您没有仓鼠,您还可以通过指定索引的json表示形式以非强类型的方式创建索引:

await collection.Indexes.CreateOneAsync("{ Name: 1 }");
原文链接:https://www.f2er.com/csharp/94268.html

猜你在找的C#相关文章