mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-17 13:39:33 +08:00
11 lines
237 B
C#
11 lines
237 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Driver;
|
|
using System.Data.Common;
|
|
|
|
namespace MongoDb.Ado.data
|
|
{
|
|
public interface IQueryHandler
|
|
{
|
|
DbDataReader Handler(IMongoCollection<BsonDocument> collection, BsonValue doc);
|
|
}
|
|
} |