I am still learning Entity Framework Core. I have already created a data context object and created a SQL database using the code-first approach.
Now I want to display data from a pre-existing SQL database. This pre-existing database has several tables and most of the business logic is written in stored procedures.
Is it possible to create another DB context object and use only the stored procedures from it without creating table schema objects?