Options
How to use with existing business & data access DLLs & app.config
My data access DLL expects to find a connection string in app.config or web.config. Where would I put that when using LinqPad?
Comments
Here is my config file:
and here is my code. Both statements return null:
var setting = ConfigurationManager.AppSettings["MySetting"];
Console.WriteLine(setting);
var con = ConfigurationManager.ConnectionStrings["MyConnectionString"];
Console.WriteLine(con);
OK, I can't paste my config or an imag