I am using LLBLGen version 2.5 Final with .NET 2.0 and an Oracle 10g database. My problem is that in the generated code (ActionProcedures.cs, RetrievalProcedures.cs etc) the schema name is harded coded in as follows:
adapter.CallRetrievalStoredProcedure("schema_name.procedure_name", parameters, toReturn);
How can this code be generated without the schema name included?
Also, in the PersistenceInfoProvider.cs class, the name of the database server is included in the base.AddElementMapping() call.
This will cause a problem when I go to deploy the system on the clients database, which has a different name and schema name.
Thanks.
Kimkim