mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-19 14:39:33 +08:00
14 lines
277 B
C#
14 lines
277 B
C#
using MongoDB.Bson;
|
|
using MongoDB.Driver;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace MongoDb.Ado.data
|
|
{
|
|
public interface IMongoOperationHandler
|
|
{
|
|
int Handle(IMongoCollection<BsonDocument> collection, string json);
|
|
}
|
|
}
|