2024-11-18 00:03:20 +08:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.SqlSugarCore;
|
|
|
|
|
|
|
|
|
|
|
|
public interface ISqlSugarDbContextDependencies
|
|
|
|
|
|
{
|
2024-11-19 11:19:13 +08:00
|
|
|
|
void OnSqlSugarClientConfig(ISqlSugarClient client);
|
2024-11-18 00:03:20 +08:00
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
}
|