从实体 A 的给定实例获取实体 B 的所有实例的总和

发布于 2024-10-21 06:11:02 字数 107 浏览 3 评论 0原文

我在实体 A 和实体 B(iOS 核心数据应用程序)之间有一对多关系。我需要从给定的实体 A 实例中获取实体 B 的所有实例的 NSDecimalNumber 属性的总和。有人有这方面的教程或示例吗?

I have a to-many relationship between Entity A and Entity B (iOS Core Data app). I need to get the sum of the NSDecimalNumber attribute of all instances of Entity B from a given instance of Entity A. Does anyone have a tutorial or example of this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你的背包 2024-10-28 06:11:02

您将使用 @sum 集合运算符 因此:

NSNumber *theSum=[ObjectA.objectBs valueForKey:@"@sum.numericalAttribute"];

You would use the @sum collection operator thusly:

NSNumber *theSum=[ObjectA.objectBs valueForKey:@"@sum.numericalAttribute"];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文