We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 443d37b + 3e6aa05 commit d94724cCopy full SHA for d94724c
FreeSql.DbContext/EfCoreFluentApi/EfCoreTableFluent`1.cs
@@ -340,6 +340,7 @@ public EfCoreTableFluent<T> HasData(IEnumerable<T> data)
340
var sdCopyLock = new object();
341
_fsql.Aop.SyncStructureAfter += new EventHandler<Aop.SyncStructureAfterEventArgs>((s, e) =>
342
{
343
+ if (e.Exception != null) return;
344
object[] sd = null;
345
lock (sdCopyLock)
346
sd = sdCopy?.ToArray();
0 commit comments