I'm using servicestack in an api c# project and have referenced the
- servicestack.ormlite
- servicestack.ormlite.sqlserver
nuget packages.
I can connect to sql server as expected.
We are now trying to implement Always Encrypted colums in some of our sql server table columns. We append the following to our db connection strings:
";Column Encryption Setting=Enabled"
When running this line is c#:
var id = await Db.InsertAsync(customer, selectIdentity: true);
an exception is now raised:
"Keyword not supported: 'column encryption setting'."
This is probably because Always Encrypted isn't supported within the Ormlite package. Is there a way of implementing something similar with ServiceStack?

