Skip to content

Commit 0549ec1

Browse files
author
zzzprojects
committed
Fix API page
Fix API page
1 parent 4b1e337 commit 0549ec1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/pages/api/options-summary/options-identity.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 %}

0 commit comments

Comments
 (0)