标签:style blog http java color 使用
这是“windows phone mango本地数据库(sqlce)”系列短片文章的第十三篇。 为了让你开始在Windows Phone Mango中使用数据库,这一系列短片文章将覆盖所有你需要知道的知识点。我将谈谈在windows phone mango本地数据库里怎么更新数据。
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 get
11 {
12 return this.GetTable<Country>();
13 }
14 }
15
16 public Table<City> Cities
17 {
18 get
19 {
20 return this.GetTable<City>();
21 }
22 }
23 }
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 name
10 cityToUpdate.Name = "Madrid";
11
12 // save changes to the database
13 context.SubmitChanges();
14 }
15 }
这篇文章我谈论了在windows phone mango本地数据库更新数据。请继续关注接下来的文章。
Windows Phone本地数据库(SQLCE):13、更新数据(翻译),布布扣,bubuko.com
Windows Phone本地数据库(SQLCE):13、更新数据(翻译)
标签:style blog http java color 使用
原文地址:http://www.cnblogs.com/zgqys1980/p/3838294.html