mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-21 07:29:35 +08:00
12 lines
283 B
C#
12 lines
283 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Driver;
|
|
using System.Data.Common;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MongoDb.Ado.data
|
|
{
|
|
public interface IQueryHandlerAsync
|
|
{
|
|
Task<DbDataReader> HandlerAsync(IMongoCollection<BsonDocument> collection, BsonValue doc);
|
|
}
|
|
} |