Skip to content

Commit 8fa15b5

Browse files
committedDec 2, 2024
refactor: replace System.Data.SqlClient with Microsoft.Data.SqlClient in documentation and code
1 parent e5c90bf commit 8fa15b5

File tree

11 files changed

+13
-15
lines changed

11 files changed

+13
-15
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ using Paillave.Etl.FileSystem;
6666
using Paillave.Etl.Zip;
6767
using Paillave.Etl.TextFile;
6868
using Paillave.Etl.SqlServer;
69-
using System.Data.SqlClient;
69+
using Microsoft.Data.SqlClient;
7070
using System.Linq;
7171

7272
namespace SimpleTutorial
@@ -141,7 +141,7 @@ using Paillave.Etl.FileSystem;
141141
using Paillave.Etl.Zip;
142142
using Paillave.Etl.TextFile;
143143
using Paillave.Etl.SqlServer;
144-
using System.Data.SqlClient;
144+
using Microsoft.Data.SqlClient;
145145

146146
namespace SimpleTutorial
147147
{

‎documentation/docs/tutorials/2-defineProcess.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ contextStream
6868

6969
## Setup the connection
7070

71-
By using `System.Data.SqlClient`, we create a connection to the database and we will inject it into the ETL process when triggering it.
71+
By using `Microsoft.Data.SqlClient`, we create a connection to the database and we will inject it into the ETL process when triggering it.
7272

7373
The extension that needs to operate with the database will get its connection through the DI setup here.
7474

@@ -200,7 +200,7 @@ using Paillave.Etl.FileSystem;
200200
using Paillave.Etl.Zip;
201201
using Paillave.Etl.TextFile;
202202
using Paillave.Etl.SqlServer;
203-
using System.Data.SqlClient;
203+
using Microsoft.Data.SqlClient;
204204
using Paillave.Etl.Core;
205205

206206
namespace SimpleTutorial

‎documentation/docs/tutorials/3-trackAndCheck.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ using Paillave.Etl.FileSystem;
329329
using Paillave.Etl.Zip;
330330
using Paillave.Etl.TextFile;
331331
using Paillave.Etl.SqlServer;
332-
using System.Data.SqlClient;
332+
using Microsoft.Data.SqlClient;
333333

334334
namespace SimpleTutorial
335335
{

‎documentation/src/components/HomepageExamples.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ using Paillave.Etl.FileSystem;
5555
using Paillave.Etl.Zip;
5656
using Paillave.Etl.TextFile;
5757
using Paillave.Etl.SqlServer;
58-
using System.Data.SqlClient;
58+
using Microsoft.Data.SqlClient;
5959
6060
namespace SimpleTutorial
6161
{

‎documentation/src/components/QuickStart.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using Paillave.Etl.FileSystem;
3131
using Paillave.Etl.Zip;
3232
using Paillave.Etl.TextFile;
3333
using Paillave.Etl.SqlServer;
34-
using System.Data.SqlClient;
34+
using Microsoft.Data.SqlClient;
3535
using System.Linq;
3636
3737
namespace SimpleTutorial

‎src/Paillave.EntityFrameworkCoreExtension/BulkSave/SqlServer/SqlServerSaveContextQuery.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Collections.Generic;
66
using System.Data;
77
using System.Data.Common;
8-
// using System.Data.SqlClient;
8+
// using Microsoft.Data.SqlClient;
99
using System.Linq;
1010
using System.Text;
1111
using System.Threading;

‎src/Paillave.EntityFrameworkCoreExtension/BulkSave/SqlServer/SqlServerUpdateContextQuery.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Data;
7-
// using System.Data.SqlClient;
7+
// using Microsoft.Data.SqlClient;
88
using System.Linq;
99
using System.Reflection;
1010
using System.Text;

‎src/Paillave.EntityFrameworkCoreExtension/Paillave.EntityFrameworkCoreExtension.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" allowedVersions="6.0.0"/>
1313
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" allowedVersions="6.0.0"/>
1414
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.0" allowedVersions="6.0.0"/>
15-
<PackageReference Include="system.data.sqlclient" Version="4.9.0" />
16-
<!-- <PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" allowedVersions="5.2.0"/> -->
15+
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" allowedVersions="5.2.0"/>
1716
</ItemGroup>
1817
</Project>

‎src/Paillave.Etl.EntityFrameworkCore/Paillave.Etl.EntityFrameworkCore.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
<PackageReference Include="FastMember" Version="1.5.0" allowedVersions="1.1.0" />
1212
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" allowedVersions="6.0.0" />
1313
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" allowedVersions="6.0.0" />
14-
<PackageReference Include="system.data.sqlclient" Version="4.9.0" />
15-
<!-- <PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" allowedVersions="5.2.0"/> -->
14+
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" allowedVersions="5.2.0"/>
1615
</ItemGroup>
1716
<ItemGroup>
1817
<ProjectReference Include="..\Paillave.Etl\Paillave.Etl.csproj" />

‎src/Tutorials/SimpleTutorial/Program copy.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// using Paillave.Etl.Zip;
66
// using Paillave.Etl.TextFile;
77
// using Paillave.Etl.SqlServer;
8-
// using System.Data.SqlClient;
8+
// using Microsoft.Data.SqlClient;
99
// using Paillave.Etl.ExecutionToolkit;
1010
// using System.Linq;
1111
// using System.IO;

‎src/Tutorials/SimpleTutorial/Program2.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// using Paillave.Etl.Zip;
66
// using Paillave.Etl.TextFile;
77
// using Paillave.Etl.SqlServer;
8-
// using System.Data.SqlClient;
8+
// using Microsoft.Data.SqlClient;
99
// using System.Linq;
1010
// using Paillave.Etl.Bloomberg;
1111

0 commit comments

Comments
 (0)
Please sign in to comment.