Why do we need System.Data.SqlTypes
in .NET Core?
#67484
-
I tried reading code and docs on it and haven't managed to find the answers. So what is the purpose? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
These types are in the BCL mostly for historic reasons; they have been there since the beginning of .NET Framework. If it were redesigned today, perhaps they would have been in a separate package. Which is the reason that |
Beta Was this translation helpful? Give feedback.
-
Note that they also used by |
Beta Was this translation helpful? Give feedback.
These types are in the BCL mostly for historic reasons; they have been there since the beginning of .NET Framework. If it were redesigned today, perhaps they would have been in a separate package.
Which is the reason that
System.Data.SqlClient
which is bundled on .NET Framework was replaced by an out-of-band NuGet package calledMicrosoft.Data.SqlClient
.