我如何使用魔法记录? findByAttribute获取有序行?
像我想做的那样:[Service findByAttribute: @"parent" withValue: sparent];
但订购name属性返回的每一行。
我怎样才能使用魔法记录?
答案 0 :(得分:3)
您正在寻找的方法是:
[Service findByAttribute:@"parent"
withValue:sparent
andOrderBy:@"name"
ascending:YES];
Here is a link到他们的头文件中,其中定义了所有的获取方法。