示例#1
0
文件: FeedDL.cs 项目: maorRoz/Sadna
 public void HasBeenRead(string notificationId)
 {
     dbConnection.CheckInput(notificationId);
     dbConnection.UpdateTable("Notifications", "NotificationID = '" + notificationId + "'", new[] { "Status" },
                              new[] { "@status" }, new object[] { "Read" });
 }