mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-17 01:46:18 +08:00
49 lines
1.6 KiB
C#
49 lines
1.6 KiB
C#
using MongoDB.Bson;
|
|
using MongoDB.Driver;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Data.Common;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MongoDb.Ado.data
|
|
{
|
|
public class QueryFindHandlerAsync : IQueryHandlerAsync
|
|
{
|
|
public HandlerContext Context { get; set; }
|
|
public CancellationToken token { get; set; }
|
|
public async Task<DbDataReader> HandlerAsync(IMongoCollection<BsonDocument> collection, BsonValue doc)
|
|
{
|
|
BsonDocument filter;
|
|
BsonDocument projection = null;
|
|
|
|
if (doc.IsBsonArray)
|
|
{
|
|
var array = doc.AsBsonArray;
|
|
filter = array.Count > 0 ? array[0].AsBsonDocument : new BsonDocument();
|
|
if (array.Count > 1)
|
|
projection = array[1].AsBsonDocument;
|
|
}
|
|
else if (doc.IsBsonDocument)
|
|
{
|
|
filter = doc.AsBsonDocument;
|
|
}
|
|
else
|
|
{
|
|
throw new ArgumentException("Invalid JSON format for MongoDB find operation.");
|
|
}
|
|
|
|
var findFluent =Context?.IsAnyServerSession==true? collection.Find(Context.ServerSession,filter) : collection.Find(filter);
|
|
|
|
if (projection != null)
|
|
findFluent = findFluent.Project<BsonDocument>(projection);
|
|
|
|
var cursor =await findFluent.ToListAsync(token);
|
|
var result = MongoDbDataReaderHelper.ToDataReader(cursor);
|
|
return result;
|
|
}
|
|
}
|
|
}
|