Hello,
I'm porting a nodejs server to BIZ using a database-first approach, generating entities via TAureliusConnection.
Then, setting in TXDataServer the DefaultEntitySetPermissions gives an almost immediate way to have a full working server in few minutes with all the desired CRUD endpoints... absolutely great!
Now, if the table name in the DB is 'com_apps' then the auto-generated endpoint will be '/com_apps' ...is there a way to turn it into 'com/apps' directly (in the Entity?) without adding a Service with [Route('com/apps')] ?
Thank you in advance.