Skip to content

Commit

Permalink
Merge pull request #57 from mariloutb/master
Browse files Browse the repository at this point in the history
corrections
  • Loading branch information
JonathanMagnan authored Jul 29, 2019
2 parents b0ee633 + fabfc97 commit c038b67
Show file tree
Hide file tree
Showing 20 changed files with 82 additions and 82 deletions.
12 changes: 6 additions & 6 deletions docs2/pages/documentations/actions/also-bulk-delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Definition

The Dapper Plus AlsoBulkDelete method allow to DELETE entities in a database table or a view using a lambda expression.
The Dapper Plus AlsoBulkDelete method allows to DELETE entities in a database table or a view using a lambda expression.

The lambda expression use the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).
The lambda expression uses the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).

## Also Bulk Delete with "One to One" Relation

The Dapper Plus AlsoBulkDelete method allow deleting a related item with a "One to One" relation.
The Dapper Plus AlsoBulkDelete method allows deleting a related item with a "One to One" relation.


```csharp
Expand All @@ -24,7 +24,7 @@ connection.BulkDelete(orders)

## Also Bulk Delete with "One to Many" Relation

The Dapper Plus AlsoBulkDelete method allow deleting related items with a "One to Many" relation.
The Dapper Plus AlsoBulkDelete method allows deleting related items with a "One to Many" relation.


```csharp
Expand All @@ -40,7 +40,7 @@ connection.BulkDelete(orders);

## Also Bulk Delete and Mixed Relation

The Dapper Plus AlsoBulkDelete method allow deleting related item(s) with any relation.
The Dapper Plus AlsoBulkDelete method allows deleting related item(s) with any relation.


```csharp
Expand All @@ -57,7 +57,7 @@ connection.BulkDelete(orders)

## Also Bulk Delete Chain Action

The Dapper Plus AlsoBulkDelete method allow chaining multiple bulk action methods.
The Dapper Plus AlsoBulkDelete method allows chaining multiple bulk action methods.


```csharp
Expand Down
12 changes: 6 additions & 6 deletions docs2/pages/documentations/actions/also-bulk-insert.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Definition

The Dapper Plus AlsoBulkInsert method allow to INSERT entities in a database table or a view using a lambda expression.
The Dapper Plus AlsoBulkInsert method allow to INSERTs entities in a database table or a view using a lambda expression.

The lambda expression use the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).
The lambda expression uses the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).

## Also Bulk Insert with "One to One" Relation

The Dapper Plus AlsoBulkInsert method allow inserting a related item with a "One to One" relation.
The Dapper Plus AlsoBulkInsert method allows inserting a related item with a "One to One" relation.


```csharp
Expand All @@ -24,7 +24,7 @@ connection.BulkInsert(orders)

## Also Bulk Insert with "One to Many" Relation

The Dapper Plus AlsoBulkInsert method allow inserting related items with a "One to Many" relation.
The Dapper Plus AlsoBulkInsert method allows inserting related items with a "One to Many" relation.


```csharp
Expand All @@ -39,7 +39,7 @@ connection.BulkInsert(orders);

## Also Bulk Insert and Mixed Relation

The Dapper Plus AlsoBulkInsert method allow inserting related item(s) with any relation.
The Dapper Plus AlsoBulkInsert method allows inserting related item(s) with any relation.


```csharp
Expand All @@ -55,7 +55,7 @@ connection.BulkInsert(orders)

## Also Bulk Insert Chain Action

The Dapper Plus AlsoBulkInsert method allow chaining multiple bulk action methods.
The Dapper Plus AlsoBulkInsert method allows chaining multiple bulk action methods.


```csharp
Expand Down
12 changes: 6 additions & 6 deletions docs2/pages/documentations/actions/also-bulk-merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Definition

The Dapper Plus AlsoBulkMerge method allow to MERGE entities in a database table or a view using a lambda expression.
The Dapper Plus AlsoBulkMerge method allows to MERGE entities in a database table or a view using a lambda expression.

The lambda expression use the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).
The lambda expression uses the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).

## Also Bulk Merge with "One to One" Relation

The Dapper Plus AlsoBulkMerge method allow merging a related item with a "One to One" relation.
The Dapper Plus AlsoBulkMerge method allows merging a related item with a "One to One" relation.


```csharp
Expand All @@ -24,7 +24,7 @@ connection.BulkMerge(orders)

## Also Bulk Merge with "One to Many" Relation

The Dapper Plus AlsoBulkMerge method allow merging related items with a "One to Many" relation.
The Dapper Plus AlsoBulkMerge method allows merging related items with a "One to Many" relation.


```csharp
Expand All @@ -40,7 +40,7 @@ connection.BulkMerge(orders);

## Also Bulk Merge and Mixed Relation

The Dapper Plus AlsoBulkMerge method allow merging related item(s) with any relation.
The Dapper Plus AlsoBulkMerge method allows merging related item(s) with any relation.


```csharp
Expand All @@ -56,7 +56,7 @@ connection.BulkMerge(orders)

## Also Bulk Merge Chain Action

The Dapper Plus AlsoBulkMerge method allow chaining multiple bulk action methods.
The Dapper Plus AlsoBulkMerge method allows chaining multiple bulk action methods.


```csharp
Expand Down
10 changes: 5 additions & 5 deletions docs2/pages/documentations/actions/also-bulk-update.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

The Dapper Plus AlsoBulkUpdate method allow to UPDATE entities in a database table or a view using a lambda expression.

The lambda expression use the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).
The lambda expression uses the entity or the IEnumerable<TEntity> from the last Bulk[Action] or ThenBulk[Action] chained method. (The action can be an insert, update, delete or merge operation).


## Also Bulk Update with "One to One" Relation

The Dapper Plus AlsoBulkUpdate method allow updating a related item with a "One to One" relation.
The Dapper Plus AlsoBulkUpdate method allows updating a related item with a "One to One" relation.


```csharp
Expand All @@ -26,7 +26,7 @@ connection.BulkUpdate(orders)

## Also Bulk Update with "One to Many" Relation

The Dapper Plus AlsoBulkUpdate method allow updating related items with a "One to Many" relation.
The Dapper Plus AlsoBulkUpdate method allows updating related items with a "One to Many" relation.


```csharp
Expand All @@ -42,7 +42,7 @@ connection.BulkUpdate(orders);

## Also Bulk Update and Mixed Relation

The Dapper Plus AlsoBulkUpdate method allow updating related item(s) with any relation.
The Dapper Plus AlsoBulkUpdate method allows updating related item(s) with any relation.


```csharp
Expand All @@ -59,7 +59,7 @@ connection.BulkUpdate(orders)

## Also Bulk Update Chain Action

The Dapper Plus AlsoBulkUpdate method allow chaining multiple bulk action methods.
The Dapper Plus AlsoBulkUpdate method allows chaining multiple bulk action methods.


```csharp
Expand Down
14 changes: 7 additions & 7 deletions docs2/pages/documentations/actions/bulk-delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

## Definition

The Dapper Plus BulkDelete method allow to DELETE entities in a database table or a view.
The Dapper Plus BulkDelete method allows to DELETE entities in a database table or a view.

## Bulk Delete Entity

The Dapper Plus BulkDelete method allow deleting a single or multiple entities of the same type.
The Dapper Plus BulkDelete method allows deleting a single or multiple entities of the same type.


```csharp
Expand All @@ -20,7 +20,7 @@ connection.BulkDelete(order1, order2, order3);

## Bulk Delete IEnumerable<TEntity>

The Dapper Plus BulkDelete method allow deleting a single enumerable or multiple enumerable of entities of the same type.
The Dapper Plus BulkDelete method allows deleting a single enumerable or multiple enumerable of entities of the same type.


```csharp
Expand All @@ -34,7 +34,7 @@ connection.BulkDelete(orders1, orders2, orders3);

## Bulk Delete with "One to One" Relation

The Dapper Plus BulkDelete method allow deleting a related item with a "One to One" relation.
The Dapper Plus BulkDelete method allows deleting a related item with a "One to One" relation.


```csharp
Expand All @@ -48,7 +48,7 @@ connection.BulkDelete(orders, order => order.Invoice);

## Bulk Delete with "One to Many" Relation

The Dapper Plus BulkDelete method allow deleting related items with a "One to Many" relation.
The Dapper Plus BulkDelete method allows deleting related items with a "One to Many" relation.


```csharp
Expand All @@ -62,7 +62,7 @@ connection.BulkDelete(orders, order => order.Items);

## Bulk Delete with "Mixed" Relation

The Dapper Plus BulkDelete method allow deleting related item(s) with any relation.
The Dapper Plus BulkDelete method allows deleting related item(s) with any relation.



Expand All @@ -77,7 +77,7 @@ connection.BulkDelete(orders, order => order.Items, order => order.Invoice);

## Bulk Delete Chain Action

The Dapper Plus BulkDelete method allow chaining multiple bulk action methods.
The Dapper Plus BulkDelete method allows chaining multiple bulk action methods.


```csharp
Expand Down
12 changes: 6 additions & 6 deletions docs2/pages/documentations/actions/bulk-insert.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Description

The Dapper Plus `BulkInsert` extension method let you insert a large number of entities in your database.
The Dapper Plus `BulkInsert` extension method lets you insert a large number of entities in your database.

```csharp
// Easy to use
Expand All @@ -27,7 +27,7 @@ connection.UseBulkOptions(options => options.InsertIfNotExists = true)
## Bulk Insert Entity

The Dapper Plus BulkInsert method allow inserting a single or multiple entities of the same type.
The Dapper Plus BulkInsert method allows inserting a single or multiple entities of the same type.


```csharp
Expand All @@ -41,7 +41,7 @@ connection.BulkInsert(order1, order2, order3);

## Bulk Insert IEnumerable<TEntity>

The Dapper Plus BulkInsert method allow inserting a single enumerable or multiple enumerable of entities of the same type.
The Dapper Plus BulkInsert method allows inserting a single enumerable or multiple enumerable of entities of the same type.


```csharp
Expand All @@ -55,7 +55,7 @@ connection.BulkInsert(orders1, orders2, orders3);

## Bulk Insert with "One to One" Relation

The Dapper Plus BulkInsert method allow inserting a related item with a "One to One" relation.
The Dapper Plus BulkInsert method allows inserting a related item with a "One to One" relation.


```csharp
Expand Down Expand Up @@ -83,7 +83,7 @@ connection.BulkInsert(orders, order => order.Items);

## Bulk Insert with "Mixed" Relation

The Dapper Plus BulkInsert method allow inserting related item(s) with any relation.
The Dapper Plus BulkInsert method allows inserting related item(s) with any relation.


```csharp
Expand All @@ -97,7 +97,7 @@ connection.BulkInsert(orders, order => order.Items, order => order.Invoice);

## Bulk Insert Chain Action

The Dapper Plus BulkInsert method allow chaining multiple bulk action methods.
The Dapper Plus BulkInsert method allows chaining multiple bulk action methods.


```csharp
Expand Down
14 changes: 7 additions & 7 deletions docs2/pages/documentations/actions/bulk-merge.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

## Definition

The Dapper Plus BulkMerge method allow to MERGE entities in a database table or a view.
The Dapper Plus BulkMerge method allows to MERGE entities in a database table or a view.

## Bulk Merge Entity

The Dapper Plus BulkMerge method allow merging a single or multiple entities of the same type.
The Dapper Plus BulkMerge method allows merging a single or multiple entities of the same type.


```csharp
Expand All @@ -21,7 +21,7 @@ connection.BulkMerge(order1, order2, order3);

## Bulk Merge IEnumerable<TEntity>

The Dapper Plus BulkMerge method allow merging a single enumerable or multiple enumerable of entities of the same type.
The Dapper Plus BulkMerge method allows merging a single enumerable or multiple enumerable of entities of the same type.


```csharp
Expand All @@ -35,7 +35,7 @@ connection.BulkMerge(orders1, orders2, orders3);

## Bulk Merge with "One to One" Relation

The Dapper Plus BulkMerge method allow merging a related item with a "One to One" relation.
The Dapper Plus BulkMerge method allows merging a related item with a "One to One" relation.


```csharp
Expand All @@ -49,7 +49,7 @@ connection.BulkMerge(orders, order => order.Invoice);

## Bulk Merge with "One to Many" Relation

The Dapper Plus BulkMerge method allow merging related items with a "One to Many" relation.
The Dapper Plus BulkMerge method allows merging related items with a "One to Many" relation.


```csharp
Expand All @@ -63,7 +63,7 @@ connection.BulkMerge(orders, order => order.Items);

## Bulk Merge with "Mixed" Relation

The Dapper Plus BulkMerge method allow merging related item(s) with any relation.
The Dapper Plus BulkMerge method allows merging related item(s) with any relation.


```csharp
Expand All @@ -77,7 +77,7 @@ connection.BulkMerge(orders, order => order.Items, order => order.Invoice);

## Bulk Merge Chain Action

The Dapper Plus BulkMerge method allow chaining multiple bulk action methods.
The Dapper Plus BulkMerge method allows chaining multiple bulk action methods.


```csharp
Expand Down
Loading

0 comments on commit c038b67

Please sign in to comment.