A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
Hey @neeraj bhushan ,
Inorder for you to connect to the data base directly from the .Net Application, you need the connection string, so that your .Net applicaiton can connect to the database. Ask the database owner to provide you the connection string.
If they have an API (I assume it is web based API), that mean, it is not direct database connection, they must have built an API, with certian functionality that allows you to interact with the data. This is how multiple systems interact together, for e.g. you may integrate with Microsoft Graph API to connect with the data in Microsoft 365. If you want to build an application that works with APIs, you can use consume the Web API from your .Net application. The following articles may help you in consuming Web API
https://www.tutorialsteacher.com/webapi/consume-web-api-for-crud-operation
Hope this helps