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

11 lines
237 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-05-02 15:50:20 +08:00
DbDataReader Handler(IMongoCollection<BsonDocument> collection, BsonValue doc);
2025-05-02 11:39:41 +08:00
}
}