I am using Visual Studio 2019, C#, and added
Using System.Data.SqlClient;
When I use the following code:
SqlConnection cnn;
I get the error:
Severity Code Description Project File Line Suppression State Error CS1069 The type name 'SqlConnection' could not be found in the namespace 'System.Data.SqlClient'. This type has been forwarded to assembly 'System.Data.SqlClient, Version=4.6.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' Consider adding a reference to that assembly
Is the SqlConnection type no longer part of the Data SQLClient in Visual Studio 2019?

