标签:style blog http java color 使用
这是“windows phone mango本地数据库(sqlce)”系列短片文章的第四篇。 为了让你开始在Windows Phone Mango中使用数据库,这一系列短片文章将覆盖所有你需要知道的知识点。我将谈谈在windows phone mango本地数据库时使用[Column] attribute。
1 [Table]
2 public class City
3 {
4 ...
5 [Column(IsPrimaryKey = true)]
6 public int ID
7 {
8 get;
9 set;
10 }
示例1:Column是主键
1 [Column(IsPrimaryKey = true, IsDbGenerated = true)]
2 public int ID
3 {
4 get;
5 set;
6 }
1 [Column(CanBeNull = false)]
2 public string Name
3 {
4 get;
5 set;
6 }
这篇文章我谈了有关在windows phone mango本地数据库中使用[Column] attribute。请继续关注接下来的文章。
Windows Phone本地数据库(SQLCE):4、[Column]attribute(翻译) (转),布布扣,bubuko.com
Windows Phone本地数据库(SQLCE):4、[Column]attribute(翻译) (转)
标签:style blog http java color 使用
原文地址:http://www.cnblogs.com/zgqys1980/p/3837972.html