在 XCode 数据模型编辑器中获取属性的最小值
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目的地是您想要返回的实体类型。
听起来您想要回一个 StoredItem,因为它是有价格的。
我认为您想要的是在 Item 上获取一个名为 minPrice 的属性,并使用以下表达式:
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: