mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-17 19:37:34 +08:00
16 lines
399 B
C#
16 lines
399 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Driver;
|
|
using System.Data.Common;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MongoDb.Ado.data
|
|
{
|
|
public interface IQueryHandlerAsync
|
|
{
|
|
CancellationToken token { get; set; }
|
|
HandlerContext Context { get; set; }
|
|
|
|
Task<DbDataReader> HandlerAsync(IMongoCollection<BsonDocument> collection, BsonValue doc);
|
|
}
|
|
} |