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
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -194,6 +194,18 @@ On my dev machine that runs at around 153ms instead of 6s using the 'out of the
194
194
195
195
SqlBulkCopy is used under the covers if you are running against SqlServer. If you are not running against SqlServer it will default to doing the normal inserts.
196
196
197
+
#### Partial updates / Not loading the data from DB first
198
+
199
+
Because you specify which columns to update you can do simple partial updates. In the example above I could have generated the list ```commentsFromDb``` from an import file for example. What I need to populate is the PrimaryKey and the columns I specify to update.
0 commit comments