If you do not want to display each column of your application as a workaround for the citation problem mentioned by @fcaldera, you can use the "Devart dotConnect for Oracle" provider.
And only the following code is needed:
Devart.Data.Oracle.Entity.Configuration.OracleEntityProviderConfig config =
Devart.Data.Oracle.Entity.Configuration.OracleEntityProviderConfig.Instance;
config.Workarounds.DisableQuoting = true;
Now you can map the "MyObject" class to the MYOBJECT table without any problems. And the same goes for columns.
Note. The NuGet version for "dotConnect for Oracle" does not support the Entity Framework. You must download a trial or professional version from the Devart website.
user1389591
source
share