I have a C # application that I did in Visual Studio. This application connects to a Sql Server database. I would like to put in my login a list option to choose another bank if I have more than one in my application. For example: a ctrl + c ctrl + v from the same bank but two different companies. I am using the app.config with the string similar to this
<connectionStrings>
<add name="MinhaStringDeConexao"
connectionString="Data Source=(local); Initial Catalog=MinhaDb; Integrated Security=SSPI;"
providerName="SqlClient"/>
</connectionStrings>
How do I put more connections in there and how do I retrieve them in my main form after login. Thanks in advance for your help.