I'm working with Microsoft Visual Studio 2008
To connect to my database using SQL Server authentication I use:
ConnectionStringFactory.Instance.Build(DbConnectionType.Samic,
DbConnectionProvider.SqlServer,
"ASQLL_LMN_UK202\\A_LMN_2",
"db_lmn_omn",
"login1",
"pwd1");
and it works.
Now I want to change to Windows authentication how can I change my ConnectionStringFactory ?
Any help will be appreciated
ConnectionStringFactorycome from?? Doesn't look like a standard .NET / ADO.NET class to me .... wherever it came from - go there and read the documentation! I'm sure that'll explain how you can use Windows auth instead of SQL Server auth .... – marc_s Dec 18 '12 at 11:36