mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
15 lines
354 B
C#
15 lines
354 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; }
|
|
|
|
Task<DbDataReader> HandlerAsync(IMongoCollection<BsonDocument> collection, BsonValue doc);
|
|
}
|
|
} |