Skip to content

Commit 6d392fb

Browse files
committed
Update Bulk Copy docs with installation instructions.
1 parent b900c87 commit 6d392fb

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/content/api/mysql-bulk-copy.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
lastmod: 2020-01-07
23
date: 2019-11-11
34
menu:
45
main:
@@ -16,6 +17,9 @@ for SQL Server.
1617
Due to [security features](../troubleshooting/load-data-local-infile/) in MySQL Server, the connection string
1718
**must** have `AllowLoadLocalInfile=true` in order to use this class.
1819

20+
**Note:** This API is a unique feature of MySqlConnector; you must [switch to MySqlConnector](../../overview/installing/)
21+
in order to use it. It is supported in version 0.62.0-beta6 and later.
22+
1923
## Example Code
2024

2125
```csharp

docs/content/overview/installing.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
lastmod: 2017-11-06
2+
lastmod: 2020-01-07
33
date: 2016-10-16
44
menu:
55
main:
@@ -12,6 +12,7 @@ Installing
1212
==========
1313

1414
The recommended way of installing MySqlConnector is through [NuGet](https://www.nuget.org/packages/MySqlConnector/).
15+
Note that if you are using the `MySql.Data` NuGet package, it must be uninstalled first.
1516

1617
### Automatically
1718

@@ -29,11 +30,11 @@ Or, in Visual Studio, use the _NuGet Package Manager_ to browse for and install
2930
<AssemblyTitle>My Application</AssemblyTitle>
3031
<Description>A great application</Description>
3132
<OutputType>Exe</OutputType>
32-
<TargetFramework>netcoreapp2.0</TargetFramework>
33+
<TargetFramework>netcoreapp3.1</TargetFramework>
3334
</PropertyGroup>
3435

3536
<ItemGroup>
36-
<PackageReference Include="MySqlConnector" Version="0.56.0" />
37+
<PackageReference Include="MySqlConnector" Version="0.61.0" />
3738
</ItemGroup>
3839

3940
</Project>

0 commit comments

Comments
 (0)