Skip to content

Commit f6dd57d

Browse files
author
zzzprojects
committed
Update website
Update website
1 parent 1950158 commit f6dd57d

15 files changed

+49
-69
lines changed

docs/_data/meta.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ include-graph,Include Graph,Include Graph,,Include Graph,,,,container-doc,sectio
3232
key,Key,Key,,Key,,,,container-doc,section-article
3333
logging,Logging,Logging,,Logging,,,,container-doc,section-article
3434
temporary-table,Temporary Table,Temporary Table,,Temporary Table,,,,container-doc,section-article
35+
transaction,Transaction,Transaction,,Transaction,,,,container-doc,section-article
3536
transient-error,Transient Error,Transient Error,,Transient Error,,,,container-doc,section-article
3637
sql-server,SQL Server,SQL Server,,SQL Server,,,,container-doc,section-article
3738
faq,FAQ,FAQ,,FAQ,,,,container-doc,section-article

docs/_includes/custom/section-sidebar.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ <h3>Options</h3>
5252
<li><a href="{{ site.github.url }}/key">Key</a></li>
5353
<li><a href="{{ site.github.url }}/logging">Logging</a></li>
5454
<li><a href="{{ site.github.url }}/temporary-table">Temporary Table</a></li>
55+
<li><a href="{{ site.github.url }}/transaction">Transaction</a></li>
5556
<li><a href="{{ site.github.url }}/transient-error">Transient Error</a></li>
5657
<li><a href="{{ site.github.url }}/sql-server">SQL Server</a></li>
5758
</ul>

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ permalink: audit
55
## UseAudit
66
Gets or sets if `INSERTED` and `DELETED` data from the database should be returned as `AuditEntries`.
77

8-
Read more: [UseAudit](use-audit)
9-
108
{% include template-example.html %}
119
{% highlight csharp %}
1210
List<AuditEntry> auditEntries = new List<AuditEntry>();
1311

14-
context.BulkSaveChanges(list, options =>
12+
context.BulkSaveChanges(options =>
1513
{
1614
options.UseAudit = true;
1715
options.BulkOperationExecuted = bulkOperation => auditEntries.AddRange(bulkOperation.AuditEntries);
@@ -24,13 +22,11 @@ context.BulkSaveChanges(list, options =>
2422
## AuditEntries
2523
Gets `INSERTED` and `DELETED` data when `UseAudit` option is enabled.
2624

27-
Read more: [AuditEntries](audit-entries)
28-
2925
{% include template-example.html %}
3026
{% highlight csharp %}
3127
List<AuditEntry> auditEntries = new List<AuditEntry>();
3228

33-
context.BulkSaveChanges(list, options =>
29+
context.BulkSaveChanges(options =>
3430
{
3531
options.UseAudit = true;
3632
options.BulkOperationExecuted = bulkOperation => auditEntries.AddRange(bulkOperation.AuditEntries);

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ permalink: batch
55
### BatchSize
66
Gets or sets the number of records to use in a batch.
77

8-
Read more: [BatchSize](batch-size)
9-
108
{% include template-example.html %}
119
{% highlight csharp %}
1210
context.BulkSaveChanges(options => options.BatchSize = 1000);
@@ -17,8 +15,6 @@ context.BulkSaveChanges(options => options.BatchSize = 1000);
1715
### BatchTimeout
1816
Gets or sets the maximum of time in seconds to wait for a batch before the command throws a timeout exception.
1917

20-
Read more: [BatchTimeout](batch-timeout)
21-
2218
{% include template-example.html %}
2319
{% highlight csharp %}
2420
context.BulkSaveChanges(options => options.BatchTimeout = 180);
@@ -29,8 +25,6 @@ context.BulkSaveChanges(options => options.BatchTimeout = 180);
2925
### BatchDelayInterval
3026
Gets or sets a delay in milliseconds to wait between batch.
3127

32-
Read more: [BatchDelayInterval](batch-delay-interval)
33-
3428
{% include template-example.html %}
3529
{% highlight csharp %}
3630
context.BulkInsert(list, options => options.BatchDelayInterval = 100);

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

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Gets or sets columns to map with the direction `Input`.
77

88
The key is required for operation such as `BulkUpdate` and `BulkMerge`.
99

10-
Read more: [Column Input](column-input-expression)
11-
1210
{% include template-example.html %}
1311
{% highlight csharp %}
1412
context.BulkMerge(list, options =>
@@ -19,8 +17,6 @@ context.BulkMerge(list, options =>
1917
## Column Output
2018
Gets or sets columns to map with the direction `Output`.
2119

22-
Read more: [Column Output](column-output-expression)
23-
2420
{% include template-example.html %}
2521
{% highlight csharp %}
2622
context.BulkMerge(list, options =>
@@ -33,8 +29,6 @@ Gets or sets columns to map with the direction `InputOutput`.
3329

3430
The key is required for operation such as `BulkUpdate` and `BulkMerge`.
3531

36-
Read more: [Column InputOutput](column-input-output-expression)
37-
3832
{% include template-example.html %}
3933
{% highlight csharp %}
4034
context.BulkMerge(list, options =>
@@ -45,8 +39,6 @@ context.BulkMerge(list, options =>
4539
## Column Primary Key
4640
Gets or sets columns to use as the `key` for the operation.
4741

48-
Read more: [Column Primary Key](column-primary-key-expression)
49-
5042
{% include template-example.html %}
5143
{% highlight csharp %}
5244
context.BulkMerge(list, options =>
@@ -57,8 +49,6 @@ context.BulkMerge(list, options =>
5749
## Ignore On Merge Insert
5850
Gets or sets columns to ignore when the `BulkMerge` method executes the `insert` statement.
5951

60-
Read more: [Column Ignore on Merge Insert](ignore-on-merge-update-expression)
61-
6252
{% include template-example.html %}
6353
{% highlight csharp %}
6454
context.BulkMerge(list, options =>
@@ -69,8 +59,6 @@ context.BulkMerge(list, options =>
6959
## Ignore On Merge Update
7060
Gets or sets columns to ignore when the `BulkMerge` method executes the `update` statement.
7161

72-
Read more: [Column Ignore on Merge Update](ignore-on-merge-update-expression)
73-
7462
{% include template-example.html %}
7563
{% highlight csharp %}
7664
context.BulkMerge(list, options =>

docs/pages/api/options-summary/options-execute-event.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ permalink: execute-event
55
## BulkOperationExecuting
66
Gets or sets an action to execute `before` the bulk operation is executed.
77

8-
Read more: [BulkOperationExecuting](bulk-operation-executing)
9-
108
{% include template-example.html %}
119
{% highlight csharp %}
1210
context.BulkSaveChanges(options => {
@@ -19,8 +17,6 @@ context.BulkSaveChanges(options => {
1917
## BulkOperationExecuted
2018
Gets or sets an action to execute `after` the bulk operation is executed.
2119

22-
Read more: [BulkOperationExecuted](bulk-operation-executed)
23-
2420
{% include template-example.html %}
2521
{% highlight csharp %}
2622
context.BulkSaveChanges(options => {

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ permalink: identity
55
### InsertKeepIdentity
66
Gets or sets if the source identity value should be preserved on `Insert`. When not specified, identity values are assigned by the destination.
77

8-
Read more: [InsertKeepIdentity](insert-keep-identity)
9-
108
{% include template-example.html %}
119
{% highlight csharp %}
1210
context.Insert(options => options.InsertKeepIdentity = true);
@@ -17,8 +15,6 @@ context.Insert(options => options.InsertKeepIdentity = true);
1715
### MergeKeepIdentity
1816
Gets or sets if the source identity value should be preserved on `Merge`. When not specified, identity values are assigned by the destination.
1917

20-
Read more: [MergeKeepIdentity](merge-keep-identity)
21-
2218
{% include template-example.html %}
2319
{% highlight csharp %}
2420
context.BulkMerge(options => options.MergeKeepIdentity = true);
@@ -29,8 +25,6 @@ context.BulkMerge(options => options.MergeKeepIdentity = true);
2925
### SynchronizeKeepIdentity
3026
Gets or sets if the source identity value should be preserved on `Synchronize`. When not specified, identity values are assigned by the destination.
3127

32-
Read more: [SynchronizeKeepIdentity](synchronize-keep-identity)
33-
3428
{% include template-example.html %}
3529
{% highlight csharp %}
3630
context.BulkSynchronize(options => options.SynchronizeKeepIdentity = true);

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ permalink: key
55
## AllowDuplicateKeys
66
Gets or sets if a duplicate key is possible in the source.
77

8-
Read more: [AllowDuplicateKeys](allow-duplicate-keys)
9-
108
{% include template-example.html %}
119
{% highlight csharp %}
1210
context.BulkSaveChanges(options => options.AllowDuplicateKeys = true);
@@ -17,8 +15,6 @@ context.BulkSaveChanges(options => options.AllowDuplicateKeys = true);
1715
## AllowUpdatePrimaryKeys
1816
Gets or sets if the key must also be included in columns to `UPDATE`.
1917

20-
Read more: [AllowUpdatePrimaryKeys](allow-update-primary-keys)
21-
2218
{% include template-example.html %}
2319
{% highlight csharp %}
2420
context.BulkSaveChanges(options => options.AllowUpdatePrimaryKeys = true);

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ permalink: logging
55
## Log
66
Gets or sets an action to `log` all database events as soon as they happen.
77

8-
Read more: [Log](log)
9-
108
{% include template-example.html %}
119
{% highlight csharp %}
1210
StringBuilder logger = new StringBuilder();
@@ -22,8 +20,6 @@ context.BulkSaveChanges(options =>
2220
## UseLogDump
2321
Gets or sets if all `log` related to database event should be stored in a `LogDump` properties.
2422

25-
Read more: [UseLogDump](use-log-dump)
26-
2723
{% include template-example.html %}
2824
{% highlight csharp %}
2925
StringBuilder logDump;
@@ -40,8 +36,6 @@ context.BulkSaveChanges(options =>
4036
## LogDump
4137
Gets all `logged` database event when `UseLogDump` is enabled.
4238

43-
Read more: [LogDump](log-dump)
44-
4539
{% include template-example.html %}
4640
{% highlight csharp %}
4741
StringBuilder logDump;

docs/pages/api/options-summary/options-sql-server.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ permalink: sql-server
55
## SqlBulkCopyOptions
66
Gets or sets the SqlBulkCopyOptions to use when `SqlBulkCopy` is used to directly insert in the destination table.
77

8-
Read more: [SqlBulkCopyOptions](sql-bulk-copy-options)
9-
108
{% include template-example.html %}
119
{% highlight csharp %}
1210
context.BulkSaveChanges(options =>

0 commit comments

Comments
 (0)