Bicks365
Bicks365

Reputation: 1

asp.net core mvc connection string

I'm using "always encrypted" on my azure sqlserver database, I'm using SqlParameter, .Net Framework 4.6 but when I use this connection string:

Data Source=name.database.windows.net;
Initial Catalog=My_Project;
Persist Security Info=True;UserID=MyId;
Pooling=False;
MultipleActiveResultSets=False;
Encrypt=True;
TrustServerCertificate=False;
Column Encryption Setting=Enabled

I get the following error: Keyword not supported: 'column encryption setting'.

Upvotes: 0

Views: 1684

Answers (1)

From your comment it seems like you are using .Net core. Always Encrypted is currently not supported on .Net Core

You can find the list of supported frameworks here

Adding Support for .NET core is on our roadmap, we do not have timeline for it yet

Upvotes: 1

Related Questions