Removed connectionString in web.config. In IIS, the connection lines are all empty. The code was not explicitly stated anywhere. Through SQL Express closed all connections to the database. But when you start the application, it still connects to it. The question is, how does it do it?
Console.WriteLine("hello world");
, the connection to the database will not happen. - VladD