Hi Team,
In App.config file we have multiple connection strings from which we need to use SQLServer connection string.
<Connectionstrings>
<addname ="DB2" providerName="DB2" Connectionstring="">
<addname = "Oracle" providerName="Oracle" Connectionstring="">
<addname = "SQLServer" providerName="SQLServer" Connectionstring=""
Currently the application is hitting the Oracle DB to get the details and we need to interact with the SQL Server to get the details as part of the requirement.
What changes need to be done in the Connection string file that it should refer to the SQL Server?How to create a new class in the layer which will hit the SQL Server?
Thanks in Advance!!