如何从Sharepoint 2010中的SocialProfile获取SPUser对象?

时间:2011-04-13 20:31:22

标签: sharepoint-2010 user-profile object-model spuser

如何从Sharepoint 2010中的SPUser获取与个人资料相关联的SocialProfile对象?

由于

2 个答案:

答案 0 :(得分:0)

获取您链接的msdn文章中指定的用户的登录名。 然后获取给定SPSite的用户,因为SharePoint用户(和组)是每个网站集:

SPWeb web = ...;
web.AllUsers["<loginName>"];

或者如果您想要创建尚未退出的用户:

web.EnsureUser("<loginName>");

答案 1 :(得分:0)

首先,获取所需用户的ID

UserProfile profile = GetProfile();
string userId = profile .MultiloginAccounts[0];

其次,从以下某个集合中获取用户

web.AllUsers, web.Users or web.SiteUser

本文是关于差异http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/71d1c8e3-de32-4e3d-9f8c-7a9be13197f6/