SqlSugar/Src/Asp.NetCore2/MongoDb.Ado.data/ExecuteDbDataReaderItems/IQueryHandler.cs

13 lines
283 B
C#
Raw Normal View History

2025-05-02 11:39:41 +08:00
using MongoDB.Bson;
using MongoDB.Driver;
using System.Data.Common;
namespace MongoDb.Ado.data
{
public interface IQueryHandler
{
2025-07-11 17:35:57 +08:00
HandlerContext Context { get; set; }
2025-05-02 15:50:20 +08:00
DbDataReader Handler(IMongoCollection<BsonDocument> collection, BsonValue doc);
2025-05-02 11:39:41 +08:00
}
}