我使用SQLite创建了一个数据库,用于存储学生的详细信息,包括

Student Name (String)
Student Password (String)
Student ID (String)
Student Attendance(Boolean)


在我的解决方案中,有3个视图控制器,如下所述:

ViewController1:表格视图,显示学生列表。

ViewController2:普通View Controller,具有3个文本字段和1个切换按钮,可获取所有4个用户详细信息。

ViewController3:一个按钮,使用户可以点击并打开出席(布尔值)。



我想使用ViewController3的按钮更新特定学生(例如StudentName = Apple)的数据。

要插入新的学生数据,代码应如下所示:
*(默认情况下,出勤率是“ false”)

void SaveButton_Clicked(object sender, EventArgs e)
{
    using (var connection = new SQLite.SQLiteConnection(pathToDatabase))
    {
        connection.Insert(new Student() { StudentName = AddStuNameTxt.Text, StudentId = AddStuIdTxt.Text, StudentPassword = AddStuPassTxt.Text, StudentAttendence = false});
        new UIAlertView("Updated !", "Student successfully created", null, "OK", null).Show();
    }
}


但是,如果我想在ViewController3中将“ Attendance”(布尔值)更新为true,则学生名为“ Apple”。我可以知道怎么做吗?

最佳答案

使用下面的代码,在任何需要的地方,例如按钮内事件。但我建议您使用StudentId而不是StudentName进行此操作。

//get specific student record
var studentItem=GetSingleRecord("Apple")
studentItem.Attendance=true;

//update record afermodification
UpdateContact(studentItem)


上面使用的方法看起来像这样。

public Student GetSingleRecord(string Name)
{
  return connection.Table<Student>().FirstOrDefault(i => i.StudentName == Name);
}

public void UpdateContact(Student obj)
{
    connection.Update(obj);
}

10-07 12:07
查看更多