Im using a ADO.NET Entity Data Model.
There I have two options:
- Save the sensitive data in the connection string
- Manual set it in code.
I choose the first option because it was shown in a lot of tutorials like this. But when I look in the debug folder i can easily open the app.config with notepad and can read the password from the database user.
But I want to publish the application and I don t want that everybody can see the password.
So is there a way to hide this password there?
And when I make an installer for this with Visual Studio Build->Publish
.
When the user installs the application. Will there be this file somewhere in the programs directory?
Please don t just share links. Thank you very much.