linq 構文を使用してデータベースを更新したいと考えています。このようにsqliteデータベースを更新しています
var dbpath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "Users.db");
using (var db = new SQLite.SQLiteConnection(dbpath))
{
db.Update(new Booking()
{
});
db.Commit();
db.Dispose();
db.Close();
}
簡単な例で更新構文の構文を知りたいです。ありがとう