2

有两个实体:

在此处输入图像描述

我想做一个课程表。

第一个实体是Course,第二个是TimeAndPlace。在大学里,有一些课程,而一门课程可能有不同的时间或地点。现在我想在每个工作日获取Courses 及其关联的 s。TimeAndPlace但是有一些限制:如果当前周在学期开始周和上周之间,则需要该课程;在本课程中,选择工作日等于某个工作日的课程。最后,我想获得课程及其相关的时间和地点。

我对Core Data不太熟悉,你能帮帮我吗?

编辑:就像 SQL:

SELECT Course.courseName, TimeAndPlace.courseLocation, TimeAndPlace.courseOrder
FROM Course, TimeAndPlace
WHERE Course.startWeekTheCourseInTheTerm <= currentWeek AND Course.lastWeekTheCourseInTheTerm >= currentWeek AND timeAndPlaces.weekday == currentweekday;

效果图:

在此处输入图像描述

4

1 回答 1

1

也许是这样的?使用 1:n 关系并不复杂,使用 n:m 会更有趣:P

NSFetchRequest* fetchRequest = [[NSFetchRequest alloc] init];
[fetchRequest setEntity:[NSEntityDescription entityForName:@"Course" inManagedObjectContext:context]];

NSPredicate* = [NSPredicate predicateWithFormat:@"startWeekTheCourseInTheTerm <= %d AND lastWeekTheCourseInTheTerm >= %d AND timeAndPlaces.weekday == %d", currentWeek, currentWeek, weekday];
[fetchRequest setPredicate:predicate];

或者如果您需要完整的一周(例如在 tableView 中显示)

NSPredicate* = [NSPredicate predicateWithFormat:@"startWeekTheCourseInTheTerm <= %d AND lastWeekTheCourseInTheTerm >= %d", currentWeek, currentWeek];
[fetchRequest setPredicate:predicate];

[fetchRequest setSortDescriptors:[NSArray arrayWithObject:[[NSSortDescriptor alloc] initWithKey:@"timeAndPlaces.weekday" ascending:YES]]];

按工作日和 courseOrder 排序:(
所以你有

-> 星期一
--> 1
--> 2
--> 3
-> 星期二
--> 1
...

[fetchRequest setSortDescriptors:[NSArray arrayWithObjects:[[NSSortDescriptor alloc] initWithKey:@"timeAndPlaces.weekday" ascending:YES], [[NSSortDescriptor alloc] initWithKey:@"timeAndPlaces.courseOrder" ascending:YES], nil]];

最后一步:获取

NSError* err = nil;
list = [NSMutableArray arrayWithArray:[context executeFetchRequest:fetchRequest error:&err]];
[fetchRequest release];
于 2013-05-23T13:23:43.380 回答