In my asp.net project i have encrypted data using RijndaelManaged (from C#) and save the data in SQL database. I want to decrypt these data by SQL query and return. See below,
SELECT Name FROM Person
Here "Name" is encrypted from C# code. I want to decrypt it from SQL Query not from c#. How can I do it?