I have an application ASP.net MVC in local. I'm working with VisualStudio 2017 and IIS Express and SQL Server Express. I have try to put my project on IIS local on my computer. My application can be execute on my browser but I can't make some request with my SQL Server Express since my code is on IIS. I think SQL Server Express need some parameters but I don't find them.
My connection string is :
this.Database.Connection.ConnectionString = "Server=" + NameServer + "; Database=" + NameDatabase + "; Integrated Security = true";
I use localDB Sql Server Express I don't know if it's a problem If you have some ideas ?