You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keeps a lock on the sqlite database file. I try to zip up the database file and get an IOException ("The process cannot access the file XXX because it is being used by another process").
Same exact code runs fine under 8.0.2 of bulk extensions (I haven't tested the versions between 8.0.2 and 9.0.0).
Replacing BulkInsertAsync with context.AddRangeAsync() and context.SaveChangedAsync() fixes the problem.
The text was updated successfully, but these errors were encountered:
This started happening in version 9.0.0 of EFCore.BulkExtensions.Sqlite.
Calling
Keeps a lock on the sqlite database file. I try to zip up the database file and get an IOException ("The process cannot access the file XXX because it is being used by another process").
Same exact code runs fine under 8.0.2 of bulk extensions (I haven't tested the versions between 8.0.2 and 9.0.0).
Replacing BulkInsertAsync with context.AddRangeAsync() and context.SaveChangedAsync() fixes the problem.
The text was updated successfully, but these errors were encountered: