I\'m attempting to deploy my first MVC application and I keep running into issues revolving around connecting to my sql server database. My current problem is that when I tr
If you intend to use integrated security you need to turn impersonation on:
Otherwise add username and password to the connection string:
Data Source=myServerAddress;Initial Catalog=myDataBase;User ID=xxx;Password=yyy;