You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs2/pages/getting-started/licensing.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,14 +52,14 @@ The validate method allow you to know whether your license is valid or not.
52
52
53
53
54
54
```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)
56
56
stringlicenseErrorMessage;
57
57
if (!Z.Dapper.Plus.DapperPlusManager.ValidateLicense(outlicenseErrorMessage))
58
58
{
59
59
thrownewException(licenseErrorMessage);
60
60
}
61
61
62
-
// CHECK if the license if valid for a specific provider
62
+
// CHECK if the license is valid for a specific provider
63
63
stringlicenseErrorMessage;
64
64
if (!Z.Dapper.Plus.DapperPlusManager.ValidateLicense(outlicenseErrorMessage, DapperProviderType.SqlServer))
65
65
{
@@ -71,4 +71,4 @@ Another way to check if your license is valid is simply adding an invalid licens
71
71
72
72
The following error should be raised:
73
73
74
-
***ERROR_001: The provided license key is invalid or trial period is expired. Please buy a product license or go to <ahref="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 <ahref="http://www.zzzprojects.com"target="_blank">http://www.zzzprojects.com</a> and download the latest trial version. License Count: 1
0 commit comments