How can I inject the group name into the namespace of generated entity?
Right now all the entities are dumped into into a single namespace. There is just no way to distinguish an entity that belongs to a certain group from another in the consumer side.
While we're on the topic how can I make LLBLgen generates different namespace for entities generated from different databases? I am hoping I could plug them into different groups, and then generate the entities accordingly, but may be there's a more elegant way?
However the database name should not be part of the entity or its namespace, since we have multi tenant architecture. So the donor database used for codegen will not be the same one as live, hence I don't want to code against anything named after the donor db as that will just serve to create confusion.