Hi Manuel,
There is no tool that you can use in this scenario. You have the following options:
1. Create a new query which executes the described SQL procedure and returns a plain (unencrypted) table.
2. Use the
SqlCommand class to execute the particular stored procedure. Note that this can be a slow process because you should create a new connection with the SQL server for every record in your data.
3. You can implement the same encoding/decoding procedure in C# and execute it on the client side.
I hope this helps. Do not hesitate to contact us if you need further assistance.
Regards,
Jack
the Telerik team