3

我是新来的小马。

假设我有这两个类和它们之间的多对多关系:

class Student(db.Entity):
    id = PrimaryKey(str)
    name = Required(str)
    courses = Set("Course")

class Course(db.Entity):
    id = PrimaryKey(str)
    name = Required(str)
    semester = Required(int)
    students = Set(Student)

我想选择一些特定学生学习的课程。我要做的是:

student = Student.select(lambda s: s.id == id).get()
courses = Course.select(lambda c: c.students == student).get()

我得到这个错误:

Incomparable types 'Set of Student' and 'Student' in expression: c.students == student

这样做的正确方法是什么?谢谢

4

1 回答 1

1

我不知道确切的库,但我认为问题在于c.students指定了所有学生的集合,因此像这样测试平等并没有太大意义。

你可能想把你的第二行改成这样(虽然我没有测试过):

Course.select(lambda c: student in c.students).get()

这让我想知道是否真的有更好的方法来做到这一点。如果您只想检索特定学生参加的课程,为什么不courses从变量中检索该字段student

就像是

student = Student.select(lambda s: s.id == id).get()
student.courses # do something with it
于 2016-11-05T17:01:43.950 回答