目标 C:CoreData 和聚合

发布于 2024-09-06 02:42:36 字数 179 浏览 3 评论 0原文

给定一个具有日期(天)和称为交易金额的 CoreData-Entity。 CoreData是否可以(以及如何)按日期聚合/分组“表”(包含所有交易)并计算第二列/属性中的当天总和? (SQL 解决方案将是SELECT date, sum(ammount) FROM transaction GROUP BY date

Given a CoreData-Entity with an date (days) and an ammount called Transaction.
Is it with CoreData possible (and how) to aggregate/group the 'table' (with all Transactions) by Date and calculate the sum of the day in a second column/attribute?
(the SQL-Solution would be SELECT date, sum(ammount) FROM transaction GROUP BY date)

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

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

发布评论

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

评论(2

和我恋爱吧 2024-09-13 02:42:36

它们可能并不完全符合您的要求,但由于 Core Data 完全符合 KVC 标准,请查看 键值编码集和数组运算符。这至少应该让您非常接近您想要做的事情。

They may not do exactly what you want, but since Core Data is fully KVC compliant, take a look at the Key-Value Coding Set and Array operators. This should at least get you pretty close to what you're looking to do.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文