Update DataChangesExecuted

This commit is contained in:
sunkaixuan 2024-09-03 10:50:57 +08:00
parent c284782169
commit 38c4499a52

View File

@ -298,6 +298,10 @@ namespace SqlSugar
private void DataChangesAop(T [] items)
{
if (typeof(T).FullName.StartsWith("System.Collections.Generic.Dictionary`"))
{
return;
}
var dataEvent = this.Context.CurrentConnectionConfig.AopEvents?.DataChangesExecuted;
if (dataEvent != null)
{