You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you wish to decrypt data already encrypted in the DB, you can try the approach suggested here.
I have no idea if it would work though.
However, if you need EFCore to do the decryption on the DB level, that won't happen as the encryption/decryption with this library works as a value converter and is done at the EFCore layer, not the DB one.
What this means is that filtering on an encrypted column using EFCore will always pull the data to the client side before decrypting and then filtering.
@uppercuut to achieve what you want (decrypting on the database level) is possible albeit with some extra work on your end.
You need to write a user-defined function that handles the decryption on the db level.
No description provided.
The text was updated successfully, but these errors were encountered: