SqlSugar/Src/Asp.NetCore2/MongoDb.Ado.data/ExecuteDbDataReaderItems/IQueryHandler.cs
2025-07-11 17:35:57 +08:00

13 lines
283 B
C#

using MongoDB.Bson;
using MongoDB.Driver;
using System.Data.Common;
namespace MongoDb.Ado.data
{
public interface IQueryHandler
{
HandlerContext Context { get; set; }
DbDataReader Handler(IMongoCollection<BsonDocument> collection, BsonValue doc);
}
}