I'm doing a project that requires some refactoring.
My domain class is like:
Book {
static belongsTo[category: category]
Category category;
String name;
}
Category {
static hasMany [books: Book]
String name;
Category parent;
}
Now I want to change that one book may belongsTo many categories. I know how to transform the domains, but overwhelmed by the fact that I must change every single appearance of category in my view/controller/service.
For example, when a book can be in 2 categories, I no longer can use the navigator like "Sciences > Math > Math for elemental class".
I'm new in this project, so that I also fear that I may broke something while trying to repair the code.
Did anyone have the same experience? Is there any tip that can help reduce the complexity of this refactoring work?