3

假设我在官方示例中有一个多对多的关系:

public class Student
{
    [PrimaryKey, AutoIncrement]
    public int Id { get; set; }

    public string Name { get; set; }

    [ManyToMany(typeof(StudentSubject))]
    public List<Student> Students { get; set; } 
}

public class Subject
{
    [PrimaryKey, AutoIncrement]
    public int Id { get; set; }

    public string Description { get; set; }

    [ManyToMany(typeof(StudentSubject))]
    public List<Subject> Subjects { get; set; } 
}

public class StudentSubject
{
    [ForeignKey(typeof(Student))]
    public int StudentId { get; set; }

    [ForeignKey(typeof(Subject))]
    public int SubjectId { get; set; }
}

如果我现在要删除一个学生,则中间对象表示的关系记录也不会被删除。(如果我启用级联删除,主题将被删除——不应该发生的事情。)

目前我正在通过使用自定义查询删除记录来手动清理,但是 sqlite-net 有更好的方法吗?

4

1 回答 1

2

您可以将属性设置为null或空列表Subjects并调用UpdateWithChildren学生对象。

student.Subjects = null;
conn.UpdateWithChildren(student);

它将更新学生对象及其关系,删除该学生的所有记录,相当于:

conn.Execute("DELETE FROM StudentSubject WHERE StudentId = ?", studentId);

缺点是,如果您让 SQLite-Net Extensions 处理该关系,您将在数据库中执行另一个“更新”语句。

于 2015-04-17T17:35:48.823 回答