一隻大菜鳥,最近要學習windows phone資料庫相關的知識,找到了一些比較簡短的教程進行學習,由於是英文的,順便給翻譯了。本身英語水平就不好,估計文中有不少錯誤,如果有不幸讀到的童鞋請保持對翻譯品質的質疑,多多指教。
這是原文地址:http://www.windowsphonegeek.com/tips/Windows-Phone-Mango-Local-Database-SQL-CE--Index-attribute
本文如下:
這是“windows phone mango本機資料庫(sqlce)”系列短片文章的第六篇。 為了讓你開始在Windows Phone Mango中使用資料庫,這一系列短片文章將覆蓋所有你需要知道的知識點。 我將談談在windows phone mango本機資料庫時使用[Index] attribute。
首先、要說到的是,windows phone 7.1上基本的資料庫功能是SQL Compact關於Mango的一個實現。你將使用linq to sql訪問儲存在資料庫上的資料。
注釋:[Index] attribute在:Namespace:Microsoft.Phone.Data.Linq.MappingAssembly: System.Data.Linq (in System.Data.Linq.dll) 1、[Index] attribute是什麼 從根本上說,[Index] attribute指定一個額外的索引到本機資料庫的表上。寫到表層級上,在表上指定額外的索引。每一個索引可以覆蓋一個到多個列。
注釋:[Index] attribute通常被資料庫引擎在內部使用。這意味著,除了定義索引之外,你不需要寫LINQ to SQL查詢或者為了使用索引而做一些其他不同的事情。 2、為什麼要使用[Index] attribute 如果你在LINQ查詢中使用“where”子句、“orderby”子句或者“join”子句,在適當的列上的索引能極大地提高效能。
注釋:[Index] attribute通常被資料庫引擎在內部使用 3、怎麼使用[Index] attribute Index attribute有下面幾個重要屬性:
- 1、Columns:擷取或設定索引基於的列
- 2、IsUnique:擷取或設定一個值,這個值表明這個索引是否是唯一的,唯一索引 不允許任意兩行具有相同的索引索引值
- 3、Name:擷取或設定索引的名字
樣本1:
1 [Index(Columns = "Name", IsUnique = true, Name= "city_Name")] 2 [Table] 3 public class City 4 { 5 private Nullable<int> countryID; 6 7 [Column(IsPrimaryKey = true, IsDbGenerated = true)] 8 public int ID 9 {10 get;11 set;12 }13 14 [Column(CanBeNull = false)]15 public string Name16 {17 get;18 set;19 }20 21 [Column(Storage = "countryID", DbType = "Int")]22 public int? CountryID23 {24 get25 {26 return this.countryID;27 }28 set29 {30 this.countryID = value;31 }32 }33 //...34 }
樣本查詢(注釋:你的LINQ to SQL查詢看起來像是以同樣的而不使用任何索引方式進行查詢,但提高了效能)
1 var query = from c in context.City where p.Name ="London" select p;
這篇文章我談了有關在windows phone mango本機資料庫中使用[Index] attribute。請繼續關注接下來的文章。