Hi,
I'm using LLBLGEN with .net core/oracle and need to overwrite the name of the schema because I schema used to generate the entities can be different on our customer databases.
To do it,I use the AddSchemaNameOverwrite(fromName, toName) method and it works but...
For some reason, we add to rename the schema of the database which we use to generate the entities. To do it, we just open the llblgenproj, find/replace the schema name but forgot to the rename the "[b]fromName[/b]" parameter of the AddSchemaNameOverwrite.
And it works ... until we launch the application on a schema which differ from the one used to generate the entities.
Exemple :
* AddSchemaNameOverwrite("NEPTUNE_AC", "XXXXX")
* Rename NEPTUNE_AC to NEPTUNE_AC_DEV
Because NEPTUNE_AC doesn't exist anymore in llblgenproj, AddSchemaNameOverwrite doesn't find anything to overwrite.
=> Don't really know how you implemented this replacement but would it be possible for you to check that the fromName exists and throw an exception if not ?
Actually, I have an OracleException "ORA-00932 Table or view doesn't exist".