daelmo wrote:
Hi Dready,
You can rename the tables and columns at DB but leave unchanged the names at your LLBLGen project. When generate code, the entities will have the same name but mapped to a different DB-names.
Or, refactor your dependent projects. That's maybe a lot of work but you can do that progressively.
Hey Daelmo,
Thanks for your reply.
The thing is, i not only want to rename tables and columns in the database, but also change the entitys, properties, relations, etc accordingly within the project.
I guess i'd start with refactoring the generated objects in the .net project, so the refactoring tool renames all dependent code. And then i'd rename the database tables and columns and regenerate the code; and if i didn't make any typing errors, it should be fine?
Dready