I am trying to implement/understand SQL Always Encrypted in .net core 3.0 and Azure KV.
I was able to successfully implement a working solution using MSFT's own provided documentation, https://learn.microsoft.com/en-us/azure/sql-database/sql-database-always-encrypted-azure-key-vault, with VS2019 and full .NET.
But, for my use case, I would like this to be done using .net core.
I have seen that there is preview of this out now, https://devblogs.microsoft.com/dotnet/introducing-the-new-microsoftdatasqlclient/.
// Create a SqlConnectionStringBuilder. SqlConnectionStringBuilder connStringBuilder = new SqlConnectionStringBuilder(connectionString);
According to the documentation, this shoould work. https://learn.microsoft.com/en-us/dotnet/api/system.data.sqlclient.sqlconnectionstringbuilder?view=netcore-3.0
But it is not. What did I do wrong?