Files
Yi.Admin/Yi.Abp.Net8/framework/Yi.Framework.SqlSugarCore/ISqlSugarDbContextDependencies.cs

16 lines
546 B
C#
Raw Normal View History

2024-11-18 00:03:20 +08:00
using System.Reflection;
using SqlSugar;
namespace Yi.Framework.SqlSugarCore;
public interface ISqlSugarDbContextDependencies
{
2024-11-19 11:53:57 +08:00
void OnSqlSugarClientConfig(ISqlSugarClient sqlSugarClient);
void DataExecuted(object oldValue, DataAfterModel entityInfo);
void DataExecuting(object oldValue, DataFilterModel entityInfo);
2024-11-18 00:03:20 +08:00
2024-11-19 11:53:57 +08:00
void OnLogExecuting(string sql, SugarParameter[] pars);
void OnLogExecuted(string sql, SugarParameter[] pars);
2024-11-18 00:03:20 +08:00
void EntityService(PropertyInfo propertyInfo, EntityColumnInfo entityColumnInfo);
}