i have c# windows form application which will connect to the ms sql server over internet connection.
i need to connect to it with entity framework to make may day good but , there is a problem with connection. i need to connect with windows authentication
i have connection string like that
Data Source=xxx.xxx.xxx.xxx[SQL INSTANCE];Initial Catalog=mainCatalog;User ID=[userid];Password=[password];
as you know this is SQL Authentication. what can i do to connect to the sql server with connection string which i can describe also windows authentication parameter to let me login.
Thanks.