https://github.com/chunliu/net-always-encrypted
A demo of using SQL Always Encrypted with ASP.NET MVC and Entity Framework.
https://github.com/chunliu/net-always-encrypted
dotnet-core dotnet-framework ef6 entity-framework sql-always-encrypted
Last synced: 3 months ago
JSON representation
A demo of using SQL Always Encrypted with ASP.NET MVC and Entity Framework.
- Host: GitHub
- URL: https://github.com/chunliu/net-always-encrypted
- Owner: chunliu
- Created: 2020-11-12T01:22:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-14T07:58:18.000Z (over 5 years ago)
- Last Synced: 2025-10-30T23:54:58.780Z (8 months ago)
- Topics: dotnet-core, dotnet-framework, ef6, entity-framework, sql-always-encrypted
- Language: JavaScript
- Homepage:
- Size: 1.61 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# net-always-encrypted
The code in this repo demonstrates how to use SQL Always Encrypted and Azure Key Vault with ASP.NET MVC and Entity Framework.
The code in the following folders:
- netcore - .NET 5 + EF Core + Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider
- netfx - .NET Framework 4.8 + EF6 + Microsoft.SqlServer.Management.AlwaysEncrypted.AzureKeyVaultProvider
Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider cannot be used for EF6 since Microsoft.Data.SqlClient is not compatible with EF6. https://github.com/dotnet/SqlClient/issues/725