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
SqlServerModificationCommandBatch has a bulk insert logic, where multiple insertions are coalesced into a single, efficient MERGE statement. We should promote the infrastructure for coalescing multiple modification commands into a single SQL statement to relational:
It would allow other providers to more easily implement bulk insert etc.
It's currently a bit tricky to implement the logic only in SqlServerModificationCommandBatch, without ReaderModificationCommandBatch knowing anything about it (e.g. this). Adding the proper hooks in ReaderModificationCommandBatch would simplify this.
SqlServerModificationCommandBatch has a bulk insert logic, where multiple insertions are coalesced into a single, efficient MERGE statement. We should promote the infrastructure for coalescing multiple modification commands into a single SQL statement to relational:
The text was updated successfully, but these errors were encountered: