Encrypt data before save into the database and Decrypt data after fetched from the database
In the database, I need to store data in an encrypted format. When retrieving the data, it should be automatically decrypted. Consider the following class: public class data { public Guid Id { get; set; } public string? Name {… Read More »Encrypt data before save into the database and Decrypt data after fetched from the database