I am currently attempting to generate code from tables from an existing Oracle 12 database from within Entity Framework 6. The problem I am having is that while it is able to see the schema that I own when I log into the environment, Entity Framework can't seem to see any other schemas that I have access to.
How can I change it so that I can see another schema?
I have used Entity Framework model-first and code-first. I can go in an manually change the schema on a generated table that I own in Oracle and it will work, but that would mean generating my own versions of tables from the other schema in my own schema just to be able to use them via Entity Framework.
Generating all the code from all the existing tables would be a cumbersome job otherwise.
How do I solve this problem?