Android Room recursive relation
问题 It's possible for room to have Recursive relations? I have an Entity that can be nested in a Parent/Childs structures something like this Category1 |_________Category2 |_________Category3 | |_________Category4 |_________Category5` I'm copying this structure from a json that is obtained from a WebService. This is my current Entity: @Entity(tableName = "categories") public class Category { @PrimaryKey @NonNull private String code; private String name; private String parentCode; @Relation