在 XCode 数据模型编辑器中获取属性的最小值

发布于 2024-08-29 12:16:19 字数 1013 浏览 9 评论 0原文

如何在 XCode 的数据模型编辑器中添加获取的属性以获得一个属性的最小值?

我的模型:

模型 http://www.freeimagehosting.net/uploads/b48853070e.png

Item (name, note, storedItem)
StoredItem (price, item)
Item 1 ---> N StoredITem (1->N Relationship)

我希望该 Item 有一个名为 minPrice 的已获取属性,其值是storedItems 中为价格设置的最小值。

示例:

Item1 (banana, storedItem1 ... storedItem4, 10)
StoredItem1 (10,item1)
StoredItem2 (15,item1)
StoredItem3 (30,item1)
StoredItem4 (54,item1)

我在“目的地”中输入什么?存储项目?

在数据模型编辑器中获取的属性 http://www.freeimagehosting.net/uploads/2a68de007d.png< /a>

我应该在表达式中放入什么?

数据模型编辑器中的表达式 http://www.freeimagehosting.net/uploads/766ab9af6f.png

How do I add a Fetched Property in XCode's Data Model Editor for minimum value of one attribute??

My model:

Model http://www.freeimagehosting.net/uploads/b48853070e.png

Item (name, note, storedItem)
StoredItem (price, item)
Item 1 ---> N StoredITem (1->N Relationship)

I want that Item has a fetched property named minPrice and its value is the minimum value setted for price in the storedItems.

Example:

Item1 (banana, storedItem1 ... storedItem4, 10)
StoredItem1 (10,item1)
StoredItem2 (15,item1)
StoredItem3 (30,item1)
StoredItem4 (54,item1)

What do I put in Destination?? StoredItem?

Fetched Property in Data Model Editor http://www.freeimagehosting.net/uploads/2a68de007d.png

And what do I put in Expression??

Expression in Data Model Editor http://www.freeimagehosting.net/uploads/766ab9af6f.png

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

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

发布评论

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

评论(1

愚人国度 2024-09-05 12:16:19

目的地是您想要返回的实体类型。

听起来您想要回一个 StoredItem,因为它是有价格的。

我认为您想要的是在 Item 上获取一个名为 minPrice 的属性,并使用以下表达式:

"@min.storedItems.price"

The destination is the type of entity you want back.

It sounds like you want a StoredItem back, since that has a price on it.

What I think you want is a fetched property on Item called minPrice, with this expression:

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