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