I am using Entity Framework 6 Code First to connect to an oracle database. EF is using "dbo" as the schema. I would rather not specify the schema, but rather let Oracle resolve the schema from the connection string.
Is there a way to omit "dbo" or any schema from the queries?
Example Given: Instead of "select * from dbo.table" I would like to see "select * from table".
Currently, I am parsing the connection string for the userId and using that as the schema, but I'd prefer to not use this technique.