In my SQL Server database, we use schemas as the database owner. Let's say I have these two tables:
AccountsPayable.Config
GeneralLedger.Config
LLBLGen Pro only uses the table name when it creates the default entity name, so it will create entities named Config and Config_.
I realize I can override these manually, but I have many many tables. Is there a way to specify the default entity name to include the schema name so my entities would by default be named AccountsPayableConfig and GeneralLedgerConfig?
Thanks.