Download presentation
Presentation is loading. Please wait.
1
SharePoint Server 2010 物件模型 -- 清單處理
Microsoft SharePoint Server 2010 Ignite! 4/19/2019 SharePoint Server 物件模型 -- 清單處理 曹祖聖 台灣微軟資深講師 MCP, MCP+I, MCSA, MCSE, MCDBA, MCAD, MCSD, MCTS, MCITP, MCPD, MCT, MVP © 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.
2
大綱 清單存取與名命慣例 清單與欄位的定義 清單項目異動 清單項目查詢與 CAML 語法 LINQ To SharePoint
外部內容類型清單存取
3
大綱 清單存取與名命慣例 清單與欄位的定義 清單項目異動 清單項目查詢與 CAML 語法 LINQ To SharePoint
外部內容類型清單存取
4
清單與欄位瀏覽 SPList 與 SPListItem 物件
SPSite site = new SPSite(" SPWeb web = site.OpenWeb("/"); SPList lst = web.Lists["DemoList"]; foreach (SPListItem item in lst.Items) { string name = (string)item[“MyCol”]; // 取得某欄位的值 listBox1.Items.Add(name); } EnumerateList
5
清單與欄位存取 – 該用那種名稱 欄位可以使用以下方式存取 Id InternalName (建議方式) Title
例如: cb4d5393-5a97-400b-b900-1b64f3ab7848 永遠不會改變,但是可讀性很差 InternalName (建議方式) 例如: CustomerID 無法透過介面改變,可讀性佳 Title 例如: 客戶編號 可讀性佳,但是網站管理人員可以改變這個名稱,會造成程式找不到項目
6
清單與欄位命名 如果在建立時就給它中文名字 建議 InternalName 會類似 _x5b78__x751f__x59d3__x540d_
Title 會是中文名字 但是 InternalName 是無法修改的 建議 請先以英文名稱建立清單或欄位 InternalName 會是這個英文名稱 用來存取該清單或欄位 然後再改成中文名稱 Title 會是這個中文名稱
7
大綱 清單存取與名命慣例 清單與欄位的定義 清單項目異動 清單項目查詢與 CAML 語法 LINQ To SharePoint
外部內容類型清單存取
8
如何建立清單 SPListTemplateType 列舉代表清單樣版類型
SPSite site = new SPSite(" SPWeb web = site.OpenWeb("/"); // 建立一個自訂清單 Guid guid = web.Lists.Add( "MyList", "這是一個測試清單", SPListTemplateType.GenericList ); CreateList
9
查詢所有清單範本 從 SharePoint 伺服器總管中查詢所有範本
10
查詢清單範本 查詢現有清單的範本
11
如何將清單加入快速啓動列 SPWeb 的 Navigation 屬性包含所有連結 每個連結由 SPNavigationNode 來定義
SPSite site = new SPSite(" SPWeb web = site.OpenWeb("/"); // 將清單加入快速啓動列 SPList lst = web.Lists["MyList"]; SPNavigationNode node = new SPNavigationNode( lst.Title, lst.DefaultViewUrl); web.Navigation.AddToQuickLaunch( node, SPQuickLaunchHeading.Lists); web.Update(); CreateList
12
如何加入和移除欄位 SPList 有一個 Fields 屬性 每一個欄位由 SPField 物件來定義 透過 Add 方法來新增欄位定義
Delete 方法可以刪除欄位 SPSite site = new SPSite(" SPWeb web = site.OpenWeb("/"); SPList lst = web.Lists["訂單資料"] lst.Fields.Add(“數量”, SPFieldType.Number, true); // 加入欄位 lst.Fields[“數量”].Delete(); // 刪除欄位 ManageColumns
13
MS Confidential : Beta1 SharePoint Developer Workshop
清單關聯 (查閱欄位)
14
如何加入查閱欄位 使用 AddLookup 方法加入查閱欄位 SPField 的 LookupField 可以指定要查閱的欄位名稱
// 加入查閱欄位 lst.Fields.AddLookup("Customer", lst.Lists["客戶資料"].ID, true); SPFieldLookup field = (SPFieldLookup)lst.Fields["Customer"]; field.Title = "客戶"; field.LookupField = lst.Lists["客戶資料"].Fields["客戶編號"].InternalName; field.Update(); ManageColumns
15
如何加入計算欄位 使用 SPFieldType.Calculated 類型的欄位 將計算公式設定在 Formula 屬性中
// 加入計算欄位 lst.Fields.Add("小計", SPFieldType.Calculated, true); SPFieldCalculated fieldTotal = (SPFieldCalculated)lst.Fields["小計"]; fieldTotal.Formula = "=[單價]*[數量]"; fieldTotal.Update(); 公式語法參考: ManageColumns
16
將欄位加入預設檢視 使用 SPView 物件來定義清單的檢視 SPList 有 Views 集合 DefaultView 是預設檢視
// 將新欄位加入預設檢視 SPView view = lst.DefaultView; view.ViewFields.Add(fieldCustomer); view.ViewFields.Add("單價"); view.ViewFields.Add("數量"); view.ViewFields.Add("小計"); view.Update(); ManageColumns
17
如何刪除清單 SPList 有兩種刪除的方法 Delete Recycle
SPSite site = new SPSite(" SPWeb web = site.OpenWeb("/"); SPList lst = web.Lists["MyList"]; lst.Delete(); // 刪除清單 lst.Recycle(); // 丢到資源回收筒 DeleteList
18
資源回收筒 SPWeb 有一個 RecycleBin 屬性 每一個資源回收筒中的清單或清單項目 SPRecycleBinItem
可以 Restore() 或 Delete() SPSite site = new SPSite(" SPWeb web = site.OpenWeb("/"); SPRecycleBinItem item = web.RecycleBin[0]; item.Delete(); // 刪除 item.Restore(); // 還原 ManageRecycleBin
19
大綱 清單存取與名命慣例 清單與欄位的定義 清單項目異動 清單項目查詢與 CAML 語法 LINQ To SharePoint
外部內容類型清單存取
20
新增清單項目 使用 SPList 的 Items 屬性的 Add() 方法 查閱的欄位值必須指到所查閱的 SPListItem
最後呼叫 SPListItem 的 Update() 方法 SPListItem item = lst.Items.Add(); item["Title"] = "order-003"; item["Customer"] = web.Lists["客戶資料"].Items[2]; item["UnitPrice"] = 100; item["Quantity"] = 15; item.Update(); AddNewListItem
21
刪除與異動清單項目 找到要異動的 SPListItem 修改欄位,呼叫 Update() 方法 呼叫 Delete() 方法刪除該筆項目
SPListItem item = web.Lists[“訂單資料"].Items[0]; item["UnitPrice"] = 500; item["Quantity"] = 20; item.Update(); Item.Delete();
22
MS Confidential : Beta1 SharePoint Developer Workshop
清單欄位格式檢查 清單欄位可以設定唯一性 可以使用公式在輸入時進行檢查 可以自訂錯誤訊息
23
大綱 清單存取與名命慣例 清單與欄位的定義 清單項目異動 清單項目查詢與 CAML 語法 LINQ To SharePoint
外部內容類型清單存取
24
查詢清單資料 使用 SPQuery 物件 ViewFields : 定義回傳欄位 Query : 定義查詢與排序條件
RowLimit : 傳回項目數上限 SPList lst = web.GetList(" SPQuery query = new SPQuery(); query.ViewFields = “…”; // CAML 語法指定回傳欄位 query.Query = “”; // CAML 語法指定查詢與排序條件 SPListItemCollection result = lst.GetItems(query); QueryList
25
CAML 語法 Collaborative Application Markup Language (CAML) CAML 語法參考:
SharePoint 使用這種語法來表示 SPSite 定義 SPList 定義 SPView 定義 SPQuery 定義 … CAML 語法參考:
26
查詢 CAML 語法 <Where> <And> <Geq>
<FieldRef Name="UnitPrice" /> <Value Type="Number">500</Value> </Geq> <Gt> <FieldRef Name="Quantity" /> <Value Type="Number">30</Value> </Gt> </And> </Where>
27
排序與欄位指定 CAML 語法 排序語法 欄位指定語法 ( ViewFields 屬性 ) <OrderBy>
<FieldRef Name='UnitPrice' Ascending='False' /> <FieldRef Name="Quantity" Ascending="True" /> </OrderBy> <FieldRef Name="Title" /> <FieldRef Name="UnitPrice" /> <FieldRef Name="Quantity" />
28
CAML 語法產生工具 Stramit SharePoint Caml Viewer U2U CAML Query Builder
U2U CAML Query Builder
29
MS Confidential : Beta1 SharePoint Developer Workshop
清單查詢限制 清單有節流功能,如果查詢的結果超過限制時,會產生錯誤 可以使用程式忽略此限制 SPQuery.RequestThrottleOverride SPSiteDataQuery.RequestThrottleOverride 只有具有權限的使用者才可以 透過 Policy 設定 在 MSF 4.0 中 SPListItem 查詢回來的結果 最多 6 個欄位 (例如用 join 查詢) 每列最多 8KB 資料 (不包含附件)
30
大綱 清單存取與名命慣例 清單與欄位的定義 清單項目異動 清單項目查詢與 CAML 語法 LINQ To SharePoint
外部內容類型清單存取
31
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
LINQ to SharePoint 不再需要 CAML 語法 … 真是太好了 自動產生 Entity 類別 強式型別查詢,編譯時期型別檢查 支援 Intellisense Microsoft.SharePoint.Linq.dll 封裝 SharePoint 物件模型,Entity 類別會使用
32
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
使用 LINQ to SharePoint 建立 Entity 類別 建立 DataContext 撰寫 LINQ 查詢語法
33
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
建立 Entity 類別 使用 spmetal 命令列工具 spmetal /web:<網站網址> /code:Lts.cs 將建立出來的程式碼檔加入專案中 LINQ To SharePoint 在執行時期,會將 LINQ 語法轉換成對應的 CAML 語法,然後將 CAML 語法送交 SharePoint 進行查詢
34
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
使用具型別資料類別 清單欄位會對應到屬性 非必要欄位以 Nullable<T> 型別的屬性來存取
35
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
DataContext 物件 使用 DataContext 物件存取 SharePoint 清單資料,類似 LINQ To SQL 的概念 LtsDataContext dc = new LtsDataContext(" var result = from o in dc.訂單資料 where o.單價 >= 500 select o; foreach (var obj in result) Console.WriteLine("{0}\t{1}\t{2}\t{3}\t{4}", obj.標題, obj.客戶.客戶名稱, obj.單價, obj.數量, obj.小計); QueryByLinqToSharePoint
36
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
清單關連 RelationsOfLinqToSharePoint
37
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
新增清單項目 var result = from c in dc.客戶資料 where c.客戶名稱 == "Peter" select c; 客戶資料項目 cust = result.First(); 訂單資料項目 o = new 訂單資料項目(); o.標題 = "order-123"; o.客戶 = cust; o.單價 = 1000; o.數量 = 25; dc.訂單資料.InsertOnSubmit(o); dc.SubmitChanges(); InsertByLinqToSharePoint
38
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
修改清單項目 // 訂單數量 >= 20 者,單價打 9 折 var result = from o in dc.訂單資料 where o.數量 >= 20 select o; foreach (var obj in result) { obj.單價 *= 0.9; } dc.SubmitChanges(); UpdateByLinqToSharePoint
39
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
刪除清單項目 // 刪除訂單數量 >= 50 的訂單項目 var result = from o in dc.訂單資料 where o.數量 >= 50 select o; foreach (var obj in result) { dc.訂單資料.DeleteOnSubmit(obj); } dc.SubmitChanges(); DeleteByLinqToSharePoint
40
大綱 清單存取與名命慣例 清單與欄位的定義 清單項目異動 清單項目查詢與 CAML 語法 LINQ To SharePoint
外部內容類型清單存取
41
External Content Types
Office Clients (Rich) 描述外部資料的結構與存取的方法,以及在 SharePoint 中的資料處理方式 BCS External Data Source (Web Service, DB, .Net object, LOB system, Web 2.0 service, etc.) External Content Type (ECT) BCS 透過 ECT 可以將外部資料整合至 SharePoint 或 Office 前端應用程式 SharePoint (Thin)
42
MS Confidential : SharePoint 2010 Developer Workshop (Beta1)
BCS 身份驗驗證 SharePoint 伺服器 行程帳號 模式: PassThrough (使用目前登入使用者) RevertToSelf (使用行程帳號) SSO Authentication (從 Secure Store 取得身份) 應用程式 Credentials Ticket Delegation Token … WebPart BCS 執行時期 VL 使用者登入 Secure Store Service Application Delegated Token SAML Token Credentials Claims Aware Service Web 2.0 Legacy LOB
43
使用物件模型存取 BCS (1/2) 使用一般存取清單的程式碼來存取 BCS 清單時,會出以下錯誤訊息: 原因是沒有先參考到必要的物件
Web sites, BDC Shared Service, Metadata Catalog, and BDC Remote Offline Runtime
44
使用物件模型存取 BCS (2/2) 參考: SPSite site = new SPSite(" SPServiceContext context = SPServiceContext.GetContext(site); SPServiceContextScope contextScope = new SPServiceContextScope(context); SPWeb web = site.OpenWeb("/"); SPList lst = web.Lists["北風客戶"]; AccessBCS
45
4/19/2019 ©2009 Microsoft, Microsoft Dynamics, the Office logo, and Your potential. Our passion. are trademarks of the Microsoft group of companies. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.
Similar presentations