We are currently in the process of reegineering our system, and have made the decision to go with LLBLGen Pro.
One thing we do is store the connection string encrypted in our app/web/.config files. So I need to decrypt these before they can be used.
The code to do it is very simple (psuedocode)
string unecrypt = Security.Decrypt(connectionstring).
Where is the best place to place this? Change the template for DataAccessAdapter or is there a no-override code block I code use?
We are using the adapter pattern, build 1.0.2005.1, VS 2003 .Net 1.1
Thanks,
Andrew