MongoDB Find-5
MongoDB Find和FindAsync参数不一样
Find<TDocument>(this IMongoCollection<TDocument> collection, FilterDefinition<TDocument> filter, FindOptions options = null)
FindSync<TDocument>(this IMongoCollection<TDocument> collection, FilterDefinition<TDocument> filter, FindOptions<TDocument, TDocument> options = null,
只有FindOptions<BsonDocument>支持Projection
为了使用Projection ,需要使用FindSync
示例
// Requires official C# and .NET MongoDB Driver 2.5+
using MongoDB.Bson;
using MongoDB.Driver;
using System;
using System.Threading.Tasks;
namespace MongoDBQuery
{
class Program
{
static async Task _Main()
{
IMongoClient client = new MongoClient("mongodb://host:port/");
IMongoDatabase database = client.GetDatabase("hesuancore");
IMongoCollection<BsonDocument> collection = database.GetCollection<BsonDocument>("1149_yewushuju");
// Created with Studio 3T, the IDE for MongoDB - https://studio3t.com/
BsonDocument filter = new BsonDocument();
BsonDocument projection = new BsonDocument();
projection.Add("_id", 1.0);
var options = new FindOptions<BsonDocument>()
{
Projection = projection
};
using (var cursor = await collection.FindAsync(filter, options))
{
while (await cursor.MoveNextAsync())
{
var batch = cursor.Current;
foreach (BsonDocument document in batch)
{
Console.WriteLine(document.ToJson());
}
}
}
}
static void Main(string[] args)
{
_Main().Wait();
}
}
}
本博客是个人工作中记录,更深层次的问题可以提供有偿技术支持。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。
另外建了几个QQ技术群:
2、全栈技术群:616945527
2、硬件嵌入式开发: 75764412
3、Go语言交流群:9924600
闲置域名WWW.EXAI.CN (超级人工智能)出售。

浙公网安备 33010602011771号