Skip to content

Commit 5072a5f

Browse files
committed
- 修复 Aop.AuditValue 值变化状态的判断问题;#2101
1 parent 62bd9af commit 5072a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FreeSql/Interface/IAop.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@ public object Value
337337
get => _value;
338338
set
339339
{
340+
if (_value != value) this.ValueIsChanged = true;
340341
_value = value;
341-
this.ValueIsChanged = true;
342342
}
343343
}
344344
private object _value;

0 commit comments

Comments
 (0)