From 9964d2089cfb457ba57d4bddfe1a7a2111640f83 Mon Sep 17 00:00:00 2001 From: mdesalvo Date: Sat, 7 Sep 2019 23:53:24 +0200 Subject: [PATCH] Switch SQL Server provider to Microsoft.Data.SqlClient --- RDFSharp/RDFSharp.csproj | 2 +- RDFSharp/Store/Engines/RDFSQLServerStore.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/RDFSharp/RDFSharp.csproj b/RDFSharp/RDFSharp.csproj index 0880098a..2ea422d2 100644 --- a/RDFSharp/RDFSharp.csproj +++ b/RDFSharp/RDFSharp.csproj @@ -39,8 +39,8 @@ + - diff --git a/RDFSharp/Store/Engines/RDFSQLServerStore.cs b/RDFSharp/Store/Engines/RDFSQLServerStore.cs index baa78ed4..dc45abb7 100644 --- a/RDFSharp/Store/Engines/RDFSQLServerStore.cs +++ b/RDFSharp/Store/Engines/RDFSQLServerStore.cs @@ -16,7 +16,7 @@ limitations under the License. using System; using System.Data; -using System.Data.SqlClient; +using Microsoft.Data.SqlClient; using RDFSharp.Model; namespace RDFSharp.Store