im using windows authentication and standard username to access my database in mssql
what password do i need to put it to connect to database via linq or do i leave pwd blank.
I have tried to create account in the management studio this dint work either
Normally you use the connection string like this:
Data Source=YOURSERVER;Initial Catalog=Nodthwind;Integrated Security=true;
where Integrated Security=true says that the application will try to access the server using the windows account under which it runs. So you don’t have to provide any passwords.