使用React Native和Realm的第一天,我很难确定如何通过两个Realm List对象执行查询。
Tasks
有Reservations
,其中Renters
有first_name
和last_name
个字段。我希望我的用户能够通过Renter的名字和姓氏搜索任务。
基本上,“给我所有承租人的名字或姓氏以”xyz“开头的任务”
const TaskSchema = {
name:'Task',
properties: {
reservations:{ type: LIST, objectType: ReservationSchema.name },
}
},
const ReservationSchema = {
name:'Reservation',
properties: {
renters:{ type: LIST, objectType: RenterSchema.name },
},
}
const RenterSchema = {
name:'Renter',
properties: {
first_name:{ type:STRING, optional:true },
last_name:{ type:STRING, optional:true },
},
}
我无法弄清楚如何设置我的查询和谓词来实现这一目标。
答案 0 :(得分:2)
您可以过滤嵌套对象。
let tasks = realm.objects('Dog');
let xyzTasks = task.filtered('reservations.renters.first_name BEGINSWITH "xyz" OR reservations.renters.last_name BEGINSWITH "xyz"');