We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Team, Is there any way to bulk Insert into multiple tables concurrently using EFCore.BulkExtensions?
Thanks and appreciate your help
The text was updated successfully, but these errors were encountered:
I haven't tested concurrently Inserts. But you can try it, more info here: https://www.adathedev.co.uk/2011/01/sqlbulkcopy-to-sql-server-in-parallel.html And it seems that this can be done only into an unindexed table: Importing Data in Parallel with Table Level Locking
Also deadlock can be an issue: deadlock-when-using-sqlbulkcopy-to-concurrently-insert-rows-into-a-single-nonempty-table Useful info: #46
Sorry, something went wrong.
No branches or pull requests
Hi Team,
Is there any way to bulk Insert into multiple tables concurrently using EFCore.BulkExtensions?
Thanks and appreciate your help
The text was updated successfully, but these errors were encountered: