SqlSugar/Src/Asp.NetCore2/MongoDb.Ado.data/ExecuteNonQueryItems/IMongoOperationHandler.cs
2025-05-02 16:55:48 +08:00

15 lines
316 B
C#

using MongoDB.Bson;
using MongoDB.Driver;
using System;
using System.Collections.Generic;
using System.Text;
namespace MongoDb.Ado.data
{
public interface IMongoOperationHandler
{
string operation { get; set; }
int Handle(IMongoCollection<BsonDocument> collection, string json);
}
}