I'm not an expert on .NET.
For an introduction to Microsoft.Data.SqlClient, here is a post that may help you.
https://devblogs.microsoft.com/dotnet/introducing-the-new-microsoftdatasqlclient/
Best regards,
Percy Tang
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
Is the Microsoft.Data.SqlClient package used in the .NET Data Provider for SQL Server?
Is it possible to change it to System.Data.SqlClient package ?
Thanks,
Dom
I'm not an expert on .NET.
For an introduction to Microsoft.Data.SqlClient, here is a post that may help you.
https://devblogs.microsoft.com/dotnet/introducing-the-new-microsoftdatasqlclient/
Best regards,
Percy Tang
Microsoft.Data.SqlClient is the newer of the two. With System.Data.SqlClient you may miss support for newer features in SQL Server.
System.Data.SqlClient comes with .NET Framwork 4.* and which comes with the OS, so it should be available.
I should also clarify what when I said that Microsoft.Data.SqlClient is newer, that is mainly a name issue. It is the same provider under a new name.
If your legacy application uses System.Data.SqlClient that should work fine, I think. Are you facing any problems?