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
Conflict resolution works by specifying columns that should be used to detect conflicts and the action to take when
121
+
a conflict is detected (e.g., update existing rows), using the `onConflict` parameter.
122
+
123
+
* The conflicting columns are specified with the `Match` property and must have a unique constraint in the database.
124
+
* The action to take when a conflict is detected is specified with the `Update` property. If not specified, the default action is to do nothing (i.e., skip the conflicting rows).
125
+
* You can also specify the condition for the update action using either the `Where` or the `RawWhere` property. If not specified, the update action will be applied to all conflicting rows.
0 commit comments