如何使用客户端对象模型从“AssignedTo”字段获取Sharepoint User对象?

时间:2010-08-01 05:27:33

标签: sharepoint sharepoint-2010

我在sharepoint 2010中使用托管客户端对象模型。我希望在任务列表中获得 AssignedTo 用户的 loginaName

在服务器端对象模型中,我使用SPFieldUserValue.User.LoginName来获取此属性,但在客户端对象模型中FieldUserValue.User不存在。

我该如何解决这种情况?

由于

4 个答案:

答案 0 :(得分:14)

这是代码。我从任务列表中获取了AssignedTo字段的示例。我希望有所帮助。

    public static User GetUserFromAssignedToField(string siteUrl)
    {
        // create site context
        ClientContext ctx = new ClientContext(siteUrl);

        // create web object
        Web web = ctx.Web;
        ctx.Load(web);

        // get Tasks list
        List list = ctx.Web.Lists.GetByTitle("Tasks");
        ctx.Load(list);

        // get list item using Id e.g. updating first item in the list
        ListItem targetListItem = list.GetItemById(1);

        // Load only the assigned to field from the list item
        ctx.Load(targetListItem,
                         item => item["AssignedTo"]);
        ctx.ExecuteQuery();

        // create and cast the FieldUserValue from the value
        FieldUserValue fuv = (FieldUserValue)targetListItem["AssignedTo"];

        Console.WriteLine("Request succeeded. \n\n");
        Console.WriteLine("Retrieved user Id is: {0}", fuv.LookupId);
        Console.WriteLine("Retrieved login name is: {0}", fuv.LookupValue);

        User user = ctx.Web.EnsureUser(fuv.LookupValue);
        ctx.Load(user);
        ctx.ExecuteQuery();

        return user;
    }

答案 1 :(得分:9)

fuv.LookupValue可能包含显示名称,而不是登录名,所以我的建议是(假设代码中有FieldUserValue - fuv(如@ekhanna所述):

var userId = fuv.LookupId;
var user = ctx.Web.GetUserById(userId);

ctx.Load(user);
ctx.ExecuteQuery();

答案 2 :(得分:3)

您可以从列表中获取作为FieldUserValue的列,一旦您使用了查找ID值,然后根据站点用户信息列表进行查询。在下面的示例中,我缓存结果以防止多次查找相同的ID,因为查询可能很昂贵。

private readonly Dictionary<int, string> userNameCache = new Dictionary<int, string>();
public string GetUserName(object user)
{
        if (user == null)
        {
            return string.Empty;
        }

        var username = string.Empty;
        var spUser = user as FieldUserValue;            
        if (spUser != null)
        {
            if (!userNameCache.TryGetValue(spUser.LookupId, out username))
            {
                var userInfoList = context.Web.SiteUserInfoList;
                context.Load(userInfoList);
                var query = new CamlQuery { ViewXml = "<View Scope='RecursiveAll'><Query><Where><Eq><FieldRef Name='ID' /><Value Type='int'>" + spUser.LookupId + "</Value></Eq></Where></Query></View>" };
                var users = userInfoList.GetItems(query);
                context.Load(users, items => items.Include(
                    item => item.Id,
                    item => item["Name"]));
                if (context.TryExecuteQuery())
                {
                    var principal = users.GetById(spUser.LookupId);
                    context.Load(principal);
                    context.ExecuteQuery()
                    username = principal["Name"] as string;
                    userNameCache.Add(spUser.LookupId, username);
                }
            }
        }
        return username;
    }

答案 3 :(得分:1)

以上所有内容对我有用,但不是:

FieldUserValue fuv = (FieldUserValue)targetListItem["AssignedTo"];

我用过:

FieldUserValue[] fuv = targetListItem["AssignedTo"] as FieldUserValue[];