We have a legacy app that I am rewriting in .net. All of our databases are oracle and make use of database links. Is there any way for Entity Framework 6 to generate models based on tables located on a different database?
Currently the legacy app gets data from table like this
SELECT * FROM emp@foo2;
where its db connection is to database foo
that has a database link to the database foo2
.
I would like to reproduce this using EF6. So far all I have found regarding this is this question.