我有一个共享站点,其中包含站点内容“ EMPLOYEE”
在“雇员”中,有许多员工记录。 每个记录包含以下列:
ID Employee JobTitle Office Department.....
1234 Kelvin Wan IT executive HK IT
当我单击“雇员”字段下的名称时。点击“ Kelvin Wan”,它将引导我到新页面,并且我将看到以下内容:
Account i:0#.w|global\wankev
Name Kelvin Wan
E-Mail Kelvin@test.com
我想在“帐户”(即“ global \ wankev”)之后检索字符串的一部分
我试图使用架构查询来检索字符串,但不知道如何访问数据信息(单击“ Kelvin Wan”后显示的页面)
List targetList = context.Web.Lists.GetByTitle("EMPLOYEE");
CamlQuery query = new CamlQuery();
query.ViewXml = "<View><Query><Where>" +
"<IsNotNull><FieldRef Name='Employee' /></IsNotNull>" +
"</Where></Query></View>";
ListItemCollection listItems = targetList.GetItems(query);
context.Load(listItems);
context.ExecuteQuery();
有人可以建议如何使用架构查询或其他方法获取字符串吗?非常感谢!