3

我对 sharepoint 比较陌生,我正在尝试编写一个 Web 服务来将我们的 sharepoint 库存数据作为 xml 返回。它工作得很好,除了其中一个列表包含一个查找字段并且生成的 xml 包含“Microsoft.SharePoint.Client.FieldLookupValue”而不是查找字段的预期字符串值。

这是我用来生成 xml 的代码:

resultList = remoteWeb.Lists.GetByTitle("Cam Devices");
context.Load(resultList);
context.ExecuteQuery();
//Now its time to reach list's items
items = resultList.GetItems(new CamlQuery());
context.Load(items);
context.ExecuteQuery();
foreach (ListItem item in items)
{
    rootNode.AppendChild(doc.CreateElement("ID")).InnerText = "pcat:401824";
    rootNode.AppendChild(doc.CreateElement("Category")).InnerText = "Cam Devices";
    rootNode.AppendChild(doc.CreateElement("Kimlik")).InnerText = Convert.ToString(item["ID"]);
    rootNode.AppendChild(doc.CreateElement("Isim")).InnerText = Convert.ToString(item["Location0"]) + " >> " + Convert.ToString(item["Brand"]) + " >> " + Convert.ToString(item["ID"]);
}

item["Location"] 是查找字段,它有一个 type 的值FieldLookupValue,我怎样才能将查找值作为字符串获取?

4

1 回答 1

16

好的,使用以下代码语法成功获取查找字段的值:

string Location = "";
if (item["Location0"] != null)
{
    var fl = (SPFieldLookupValue)item["Location0"];
    Location = fl.LookupValue;
}
于 2012-07-04T10:22:53.470 回答