一隻大菜鳥,最近要學習windows phone資料庫相關的知識,找到了一些比較簡短的教程進行學習,由於是英文的,順便給翻譯了。本身英語水平就不好,估計文中有不少錯誤,如果有不幸讀到的童鞋請保持對翻譯品質的質疑,多多指教。
這是原文地址:http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--How-to-Update-data本文如下: 這是“windows phone mango本機資料庫(sqlce)”系列短片文章的第十三篇。 為了讓你開始在Windows Phone Mango中使用資料庫,這一系列短片文章將覆蓋所有你需要知道的知識點。我將談談在windows phone mango本機資料庫裡怎麼更新資料。
更新資料到資料庫是一個三個步驟的過程。首先,查詢要被更新的對象,然後更改資料,最後調用SubmitChanges 方法儲存這些更改到資料庫。
注釋:如果你綁定在DataContext裡的對象到頁面上的控制項,根據使用者的互動自動更新資料。然後,在期望的時間裡只要一個步驟要求調用SubmitChanges 方法。
注釋:直到SubmitChanges 方法被調用資料才會更新。 參考:你可以看看MSDN文檔http://msdn.microsoft.com/zh-cn/library/hh202861(v=vs.92).aspx 1、怎麼更新資料在開始之前,假設我們有下面兩張表的資料庫結構:Country和City
DataContext如下
1 public class CountryDataContext : DataContext 2 { 3 public CountryDataContext(string connectionString) 4 : base(connectionString) 5 { 6 } 7 8 public Table<Country> Countries 9 {10 get11 {12 return this.GetTable<Country>();13 }14 }15 16 public Table<City> Cities17 {18 get19 {20 return this.GetTable<City>();21 }22 }23 }
下面的程式碼範例中我將示範幾個過程:1、建立DataContext2、找到要被更新的目標“City”3、更新City的名字Madrid4、調用SubmitChanges方法儲存更改。
1 private void UpdateCity() 2 { 3 using (CountryDataContext context = new CountryDataContext(ConnectionString)) 4 { 5 // find a city to update 6 IQueryable<City> cityQuery = from c in context.Cities where c.Name == "Barcelona" select c; 7 City cityToUpdate = cityQuery.FirstOrDefault(); 8 9 // update the city by changing its name10 cityToUpdate.Name = "Madrid";11 12 // save changes to the database13 context.SubmitChanges();14 }15 }
這篇文章我談論了在windows phone mango本機資料庫更新資料。請繼續關注接下來的文章。
這是原文地址:http://windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--How-to-Update-data