File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/pages/api/options-summary Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Gets or sets if the source identity value should be preserved on `Insert`. When
77
88{% include template-example.html %}
99{% highlight csharp %}
10- context.Insert( options => options.InsertKeepIdentity = true);
10+ context.BulkInsert(list, options => options.InsertKeepIdentity = true);
1111{% endhighlight %}
1212
1313---
@@ -17,7 +17,7 @@ Gets or sets if the source identity value should be preserved on `Merge`. When n
1717
1818{% include template-example.html %}
1919{% highlight csharp %}
20- context.BulkMerge(options => options.MergeKeepIdentity = true);
20+ context.BulkMerge(list, options => options.MergeKeepIdentity = true);
2121{% endhighlight %}
2222
2323---
@@ -27,5 +27,5 @@ Gets or sets if the source identity value should be preserved on `Synchronize`.
2727
2828{% include template-example.html %}
2929{% highlight csharp %}
30- context.BulkSynchronize(options => options.SynchronizeKeepIdentity = true);
30+ context.BulkSynchronize(list, options => options.SynchronizeKeepIdentity = true);
3131{% endhighlight %}
You can’t perform that action at this time.
0 commit comments