mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
21 lines
654 B
C#
21 lines
654 B
C#
using System.Reflection;
|
|
using SqlSugar;
|
|
|
|
namespace Yi.Framework.SqlSugarCore.Abstractions;
|
|
|
|
public interface ISqlSugarDbContextDependencies
|
|
{
|
|
/// <summary>
|
|
/// 执行顺序
|
|
/// </summary>
|
|
int ExecutionOrder { get; }
|
|
|
|
void OnSqlSugarClientConfig(ISqlSugarClient sqlSugarClient);
|
|
void DataExecuted(object oldValue, DataAfterModel entityInfo);
|
|
void DataExecuting(object oldValue, DataFilterModel entityInfo);
|
|
|
|
void OnLogExecuting(string sql, SugarParameter[] pars);
|
|
void OnLogExecuted(string sql, SugarParameter[] pars);
|
|
|
|
void EntityService(PropertyInfo propertyInfo, EntityColumnInfo entityColumnInfo);
|
|
} |