Фрагмент кода: получение данных элемента из внешнего списка на клиенте
Дата последнего изменения: 19 апреля 2010 г.
Применимо к: SharePoint Server 2010
В этой статье
Описание
Необходимые компоненты
Использование этого примера
Описание
В следующем фрагменте кода показано извлечение данных элемента внешнего списка на клиентском компьютере с использованием объектной модели клиента SharePoint.
Важно! |
---|
При попытке использовать установленный по умолчанию метод ClientContext.Load для данных элемента ListItem из внешнего списка отображается следующая ошибка: "Данный ключ отсутствует в словаре". Вместо этого необходимо явно указать нужные поля в объекте CamlQuery и методе ClientContext.Load. |
Необходимые компоненты
Microsoft SharePoint Server 2010 или Microsoft SharePoint Foundation 2010 на сервере.
По крайней мере один внешний список на сервере.
Microsoft Office профессиональный плюс 2010 и Microsoft .NET Framework 3.5 на клиентском компьютере.
Microsoft Visual Studio.
Использование этого примера
Запустите Visual Studio на клиентском компьютере и создайте проект консольного приложения C#. При создании проекта выберите .NET Framework 3.5.
В меню Вид выберите Страницы свойств, чтобы вывести свойства проекта.
На вкладке Построение в разделе Целевая платформа выберите Любой ЦП.
Закройте окно свойств проекта.
В обозревателе решений в разделе Ссылки удалите все ссылки проекта, кроме System и System.Core.
Добавьте в проект следующие ссылки:
Microsoft.SharePoint.Client
Microsoft.SharePoint.Client.Runtime
System.Data.Linq
System.XML
Замените автоматически созданный код в файле Program.cs на код, приведенный в конце этой процедуры.
Замените значения атрибутов <TargetSiteUrl> и <TargetListName> допустимыми значениями.
Сохраните проект.
Скомпилируйте и запустите проект.
using System;
using Microsoft.SharePoint.Client;
using System.Linq.Expressions;
using System.Collections.Generic;
using System.Xml;
using System.IO;
using System.Text;
using System.Globalization;
namespace Microsoft.SDK.Sharepoint.Samples
{
/// <summary>
/// This example shows how to retrieve list item data
/// from an external list.
///
/// You'll need to explicitly specify the field data in both
/// the CAML query and also ClientContext.Load.
/// </summary>
class Program
{
// Note: Replace these with your actual Site URL and List name.
private static string TargetSiteUrl = "<TargetSiteUrl>";
private static string TargetListName = "<TargetListName>";
/// <summary>
/// Example to show using CSOM to retrieve external List data.
/// </summary>
static void Main(string[] args)
{
ClientContext clientContext = new ClientContext(TargetSiteUrl);
List externalList = clientContext.Web.Lists.GetByTitle(
TargetListName);
// To properly construct the CamlQuery and
// ClientContext.LoadQuery,
// we need some View data of the Virtual List.
// In particular, the View will give us the CamlQuery
// Method and Fields.
clientContext.Load(
externalList.Views,
viewCollection => viewCollection.Include(
view => view.ViewFields,
view => view.HtmlSchemaXml));
// This tells us how many list items we can retrieve.
clientContext.Load(clientContext.Site,
s => s.MaxItemsPerThrottledOperation);
clientContext.ExecuteQuery();
// Let's just pick the first View.
View targetView = externalList.Views[0];
string method = ReadMethodFromViewXml(
targetView.HtmlSchemaXml);
ViewFieldCollection viewFields = targetView.ViewFields;
CamlQuery vlQuery = CreateCamlQuery(
clientContext.Site.MaxItemsPerThrottledOperation,
method,
viewFields);
Expression<Func<ListItem, object>>[] listItemExpressions =
CreateListItemLoadExpressions(viewFields);
ListItemCollection listItemCollection =
externalList.GetItems(vlQuery);
// Note: Due to limitation, you currently cannot use
// ClientContext.Load.
// (you'll get InvalidQueryExpressionException)
IEnumerable<ListItem> resultData = clientContext.LoadQuery(
listItemCollection.Include(listItemExpressions));
clientContext.ExecuteQuery();
foreach (ListItem li in resultData)
{
// Now you can use the ListItem data!
// Note: In the CamlQuery, we specified RowLimit of
// MaxItemsPerThrottledOperation.
// You may want to check whether there are other rows
// not yet retrieved.
}
}
/// <summary>
/// Parses the viewXml and returns the Method value.
/// </summary>
private static string ReadMethodFromViewXml(string viewXml)
{
XmlReaderSettings readerSettings = new XmlReaderSettings();
readerSettings.ConformanceLevel = ConformanceLevel.Fragment;
XmlReader xmlReader = XmlReader.Create(
new StringReader(viewXml), readerSettings);
while (xmlReader.Read())
{
switch (xmlReader.NodeType)
{
case XmlNodeType.Element:
if (xmlReader.Name == "Method")
{
while (xmlReader.MoveToNextAttribute())
{
if (xmlReader.Name == "Name")
{
return xmlReader.Value;
}
}
}
break;
}
}
throw new Exception("Unable to find Method in View XML");
}
/// <summary>
/// Creates a CamlQuery based on the inputs.
/// </summary>
private static CamlQuery CreateCamlQuery(
uint rowLimit, string method, ViewFieldCollection viewFields)
{
CamlQuery query = new CamlQuery();
XmlWriterSettings xmlSettings = new XmlWriterSettings();
xmlSettings.OmitXmlDeclaration = true;
StringBuilder stringBuilder = new StringBuilder();
XmlWriter writer = XmlWriter.Create(
stringBuilder, xmlSettings);
writer.WriteStartElement("View");
// Specifies we want all items, regardless of folder level.
writer.WriteAttributeString("Scope", "RecursiveAll");
writer.WriteStartElement("Method");
writer.WriteAttributeString("Name", method);
writer.WriteEndElement(); // Method
if (viewFields.Count > 0)
{
writer.WriteStartElement("ViewFields");
foreach (string viewField in viewFields)
{
if (!string.IsNullOrEmpty(viewField))
{
writer.WriteStartElement("FieldRef");
writer.WriteAttributeString("Name", viewField);
writer.WriteEndElement(); // FieldRef
}
}
writer.WriteEndElement(); // ViewFields
}
writer.WriteElementString(
"RowLimit", rowLimit.ToString(CultureInfo.InvariantCulture));
writer.WriteEndElement(); // View
writer.Close();
query.ViewXml = stringBuilder.ToString();
return query;
}
/// <summary>
/// Returns an array of Expression used in
/// ClientContext.LoadQuery to retrieve
/// the specified field data from a ListItem.
/// </summary>
private static Expression<Func<ListItem, object>>[]
CreateListItemLoadExpressions(
ViewFieldCollection viewFields)
{
List<Expression<Func<ListItem, object>>> expressions =
new List<Expression<Func<ListItem, object>>>();
foreach (string viewFieldEntry in viewFields)
{
// Note: While this may look unimportant,
// and something we can skip, in actuality,
// we need this step. The expression should
// be built with local variable.
string fieldInternalName = viewFieldEntry;
Expression<Func<ListItem, object>>
retrieveFieldDataExpression =
listItem => listItem[fieldInternalName];
expressions.Add(retrieveFieldDataExpression);
}
return expressions.ToArray();
}
}
}