Is it possible use App.config's value in Connectionstring. Example is mentioned below.
<appsettings><add key="UserName" Value="abc" /></appsettings>
<connectionstring><add name="Conn" connectionString="Server=test; Database=test; Uid=UserName; Pwd=test123;" />
So as you can see that I have defined the Username in appsettings and I want to see that into the connection string
Any help is appreciated.