gpt4 book ai didi

iphone - 核心数据 - 如何获取具有最大值属性的实体

转载 作者:IT老高 更新时间:2023-10-28 11:49:57 25 4
gpt4 key购买 nike

我有一个实体 Person 具有属性 personId(personId 是唯一的)

如何获取具有最大 personId 的 Person?

(我想获取人本身而不是属性(property)的值(value))

最佳答案

您将 fetchLimit 设置为 1 并按 personId 降序排序。例如:

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"Person"];

fetchRequest.fetchLimit = 1;
fetchRequest.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"personId" ascending:NO]];

NSError *error = nil;

id person = [managedObjectContext executeFetchRequest:fetchRequest error:&error].firstObject;

关于iphone - 核心数据 - 如何获取具有最大值属性的实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10398019/

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