mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-08 10:16:37 +08:00
feat: 搭建多dbcontext模式
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System.Reflection;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Yi.Framework.SqlSugarCore;
|
||||
|
||||
public interface ISqlSugarDbContextDependencies
|
||||
{
|
||||
void OnSqlSugarClientConfig(ISqlSugarClient client);
|
||||
|
||||
void DataExecuted(object obj, DataAfterModel dataAfterModel);
|
||||
void DataExecuting(object obj, DataFilterModel dataAfterModel);
|
||||
|
||||
void OnLogExecuting(string str, SugarParameter[] parameters);
|
||||
void OnLogExecuted(string str, SugarParameter[] parameters);
|
||||
|
||||
void EntityService(PropertyInfo propertyInfo, EntityColumnInfo entityColumnInfo);
|
||||
}
|
||||
Reference in New Issue
Block a user