web-dev-qa-db-ja.com

クライアント側のオブジェクトモデルを使用して、「AssignedTo」フィールドからSharepointユーザーオブジェクトを取得するにはどうすればよいですか?

SharePoint 2010でマネージドクライアント側オブジェクトモデルを使用しています。タスクリストでAssignedToユーザーのloginaNameを取得したいと思います。

サーバー側のオブジェクトモデルでは、SPFieldUserValue.User.LoginNameを使用してこのプロパティを取得しますが、クライアント側のオブジェクトモデルではFieldUserValue.Userが存在しません。

どうすればこの状況を解決できますか?

ありがとう

12
user90147

これがそのためのコードです。タスクリストから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();

        // display the user's email address.
        Consol.writeLine("User Email: " + user.Email);

        return user;
    }
14
ekhanna

fuv.LookupValueにはログイン名ではなく表示名が含まれている可能性があるため、私の提案は次のとおりです(コードにFieldUserValue --fuvがあると仮定します(@ekhannaで説明):

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

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

リストから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
Mike Cales

上記のすべてが私のために働いたが、代わりに:

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

私が使用した:

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

1
MrCarder