Rails の Active Record ライクな APIが提供されている。以下 READMEからの転載。 NSArray *people = [Person findAll]; NSArray *peopleSorted = [Person findAllSortedByProperty:@"LastName" ascending:YES]; Person *person = [Person findFirstByAttribute:@"FirstName" withValue:@"Forrest"]; フェッチ 結果をブロックで処理できる。 [[Person findAll] each:^(Person* p) { NSLog(@"Found %@",p.name); }];NSArray* fatherArray = [[Person findAll] map:^id(Person