xxxxxxxxxx
Server=myServerName\myInstanceName;Database=myDataBase;Trusted_Connection=True;
replace myServerName with the name of your SQL Server instance, myInstanceName with the name of your SQL Server instance (if applicable), and myDataBase with the name of the database you want to connect to. The Trusted_Connection=True parameter specifies that Windows authentication should be used for the connection.
xxxxxxxxxx
<connectionStrings>
<add name="NorthwindContex"
connectionString="data source=localhost;
initial catalog=northwind;persist security info=True;
Integrated Security=SSPI;"
providerName="System.Data.SqlClient" />
</connectionStrings>