gpt4 book ai didi

ios - NSFetchRequest 多对一 仅最新

转载 作者:行者123 更新时间:2023-11-29 03:11:03 25 4
gpt4 key购买 nike

我正在尝试找出在多对一关系中检索单个最新结果的最有效方法。

示例:

实体 A - 团队(名称)实体 B - 员工(姓名,已创建)

团队<-->>员工

我想在 Employee 上创建一个获取请求,返回每个团队最近创建的员工。

显然,我可以迭代 Team,然后运行第二个请求来为该团队找到最新的 Employee,但如果有数百个团队并且可能有数千名员工,这可能会变得非常繁重。

非常感谢任何想法。

最佳答案

适当的 sortDescriptor 和设置为 1fetchBatchSize 应该可以解决问题。

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Employee"];
fetchRequest.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"date" ascending:YES]];
fetchRequest.fetchBatchSize = 1;
NSError *error = nil;
NSArray *results = [context executeFetchRequest:fetchRequest error:&error];

编辑:此时我终于明白了这个问题:如何让每个团队中的最新员工。我不认为只用一个 fetchRequest 就可以做到这一点。但如果你仔细想想,这是很合乎逻辑的。

NSFetchRequest *allTeamsFetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Team"];
allTeamsFetchRequest.returnsObjectsAsFaults = YES;
NSArray *teams = [context executeFetchRequest:allTeamsFetchRequest error:&error];

NSMutableArray *newPlayers = [NSMutableArray array];
for (NSManagedObject *team in teams) {
NSFetchRequest *newPlayerFetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Employee"];
newPlayerFetchRequest.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"date" ascending:YES]];
newPlayerFetchRequest.fetchBatchSize = 1;
NSArray *players = [context executeFetchRequest:newPlayerFetchRequest error:&error];
[newPlayers addObjectsFromArray:players];
}

因此,首先添加所有 Team 对象,请注意,对于此任务,我们可以摆脱 fault,无需获取关系。然后对于每个 Team,我们得到最新的球员。这不是“单线”解决方案,但它能发挥作用。

关于ios - NSFetchRequest 多对一 仅最新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22246324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com