mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-15 23:13:42 +08:00
13 lines
283 B
C#
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);
|
|
}
|
|
} |