@preno, thanks for the feedback, I recommend that you use two dbcontext, which is suitable for your current problem.
I suggest that you use ef core to generate the related dbcontext, which means that you have to use asp.net core mvc app.
When you used ef core, you could use code first for your AppDB database and use database first for your DBStart database.
Code first article: https://learn.microsoft.com/en-us/ef/core/get-started/overview/first-app?tabs=netcore-cli
Database first article: https://learn.microsoft.com/en-us/ef/core/managing-schemas/scaffolding/?tabs=dotnet-core-cli
The advantage of using ef core is that we don't need to delete the dbcontext manually when we use the database first command or the code first related command again, and it will update the existing database and entity classes.
BTW, I did not recommend that you create a table in the new db with data read from the remote database. Because if the remote database has the update, you need to update the new db manually.
Hope my advice could help you.
Best Regards,
Jack
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.