LimitTech

Results 4 issues of LimitTech

Hello! I have these classes: ``` public class Smartphone extends RushObject { private int id; // could be Long, not problem private Position position; // extra fields } public class...

Hello. I was wondering if there is any option to set extra columns in the relations. For example: _Element has many Tags_ So in the table Element_Tag there are three...

Hello, I have ``` Parent.class: @List... List children; ``` Is there any way to access to parent from a child? ``` Child child = new RushSearch().findSingle(Child); child.parent ??? ``` Thanks

Hello! I'm using this function in order to replace items from an API REST: ``` private void saveList(List models) { for (T model : models) { ((Model) model).registerWithId(); // RushCore.getInstance().registerObjectWithId(this,...