Skip to content

Commit b5799c6

Browse files
Merge pull request #41 from stgelaisalex/master
Emma changes
2 parents 8a2df5e + ad53349 commit b5799c6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs2/pages/getting-started/dapper-plus-relationship.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ connection.BulkInsert(lefts)
1212
.ThenBulkInsert(left => left.Rights);
1313
```
1414

15-
In this article, you will learn how to handle this kind of relation:
15+
In this tutorial, you will learn how to handle this kind of relation:
1616

1717
- Foreign Key Property
1818
- Navigation Property

docs2/pages/getting-started/licensing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ The validate method allow you to know whether your license is valid or not.
5252

5353

5454
```csharp
55-
// CHECK if the license if valid for the default provider (SQL Server)
55+
// CHECK if the license is valid for the default provider (SQL Server)
5656
string licenseErrorMessage;
5757
if (!Z.Dapper.Plus.DapperPlusManager.ValidateLicense(out licenseErrorMessage))
5858
{
5959
throw new Exception(licenseErrorMessage);
6060
}
6161

62-
// CHECK if the license if valid for a specific provider
62+
// CHECK if the license is valid for a specific provider
6363
string licenseErrorMessage;
6464
if (!Z.Dapper.Plus.DapperPlusManager.ValidateLicense(out licenseErrorMessage, DapperProviderType.SqlServer))
6565
{
@@ -71,4 +71,4 @@ Another way to check if your license is valid is simply adding an invalid licens
7171

7272
The following error should be raised:
7373

74-
***ERROR_001: The provided license key is invalid or trial period is expired. Please buy a product license or go to <a href="http://www.zzzprojects.com" target="_blank">http://www.zzzprojects.com</a> and download the latest trial version. License Count: 1***
74+
> ERROR_001: The provided license key is invalid or trial period is expired. Please buy a product license or go to <a href="http://www.zzzprojects.com" target="_blank">http://www.zzzprojects.com</a> and download the latest trial version. License Count: 1

0 commit comments

Comments
 (0)