Subquery and IN Statement in realm
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have three realm objects. Department, section and user. section is a kind of sub department in a department. But there will be users under each section and each department. @interface Department : RLMObject @property NSString *name; @property BOOL isCollapsed; @property (nonatomic, strong) RLMArray *sections; @property (nonatomic, strong) RLMArray *users; @end @interface Section : RLMObject @property NSString *name; @property BOOL isCollapsed; @property RLMArray *users; @end @interface User : RLMObject @property NSString *department;