SharePoint CSOM 处理人员和组字段

Posted 霖雨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SharePoint CSOM 处理人员和组字段相关的知识,希望对你有一定的参考价值。

  前言

  最近,在做SharePoint Online 数据迁移的工作,于是乎,就有了处理人员和组字段的需求。

  正文

  首先,需要获取字段的值未FieldUserValue[]类型,然后,每个用户都需要在新站点EnsuerUser一下,确保在新站点上已经存在。

if (sourceItem.FieldValues["Users"] != null)
{
FieldUserValue[] fUsers1 = sourceItem.FieldValues["Users"] as FieldUserValue[];
FieldUserValue[] users1 = new FieldUserValue[fUsers1.Length];
for (int m = 0; m < fUsers1.Length; m++)
{
    try
    {
        User TempUser = targetWeb.EnsureUser(fUsers1[m].Email);
        targetContext.Load(TempUser);
        targetContext.ExecuteQuery();
        FieldUserValue fieldUserVal = new FieldUserValue();
        fieldUserVal.LookupId = TempUser.Id;
        users1.SetValue(fieldUserVal, m);
    }
    catch{}
}

newItem["Users"] = users1;
newItem.Update();
targetContext.ExecuteQuery();
}

  结束语

  其实,在处理的过程中,还需要判断其中是否有User已经不在Talent里了的情况,防止程序报错。

以上是关于SharePoint CSOM 处理人员和组字段的主要内容,如果未能解决你的问题,请参考以下文章

BEGINNING SHAREPOINT&#174; 2013 DEVELOPMENT 第9章节--client对象模型和REST APIs概览 client对象模型(CSOM)基础(示例代

从 Sharepoint 列表中获取所有项目,包括使用 CSOM 的查找值

如何使用 CSOM 禁用 SharePoint 2013 警报

如何使用 CSOM 从/向 SharePoint 2013 下载/上传文件?

将自定义 Web 部件添加到页面 SharePoint 2013 c# csom

csharp 使用CSOM创建Sharepoint Wiki页面