using MongoDB.Bson; using MongoDB.Driver; using System.Data.Common; namespace MongoDb.Ado.data { public interface IQueryHandler { HandlerContext Context { get; set; } DbDataReader Handler(IMongoCollection collection, BsonValue doc); } }