标签: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 public MainPage()
2 {
3 InitializeComponent();
4
5 using (CountryDataContext context = new CountryDataContext(ConnectionString))
6 {
7
8 if (!context.DatabaseExists())
9 {
10 // create database if it does not exist
11 context.CreateDatabase();
12 }
13 }
14 }
现在你有context,并且数据库已经创建好了。你可以像示例里那样查询:
1 var query = from c in context.City where p.Name ="London" select p;
这篇文章我讨论了在windows phone mango 本地数据库中的DataContext,并且如何使用它们。请继续关注接下来的文章。
Windows Phone本地数据库(SQLCE):8、DataContext(翻译),布布扣,bubuko.com
Windows Phone本地数据库(SQLCE):8、DataContext(翻译)
标签:style blog http java color 使用
原文地址:http://www.cnblogs.com/zgqys1980/p/3838265.html