個人評分信息存儲在社交數據庫中,並且不會與列表項一起存儲。列表項只包含平均評分值和評分數。您可以創建自定義Web部件並顯示當前用戶的評分信息類模型..
使用下面的代碼:
using Microsoft.Office.Server.SocialData;
using Microsoft.Office.Server.UserProfiles;
SPSite oSite = SPContext.Current.Site;
SPServiceContext context = SPServiceContext.GetContext(oSite);
UserProfileManager profileManager = new UserProfileManager(context);
UserProfile profile = profileManager.GetUserProfile(user.LoginName.ToString());
SocialRatingManager socialRatingManager = new SocialRatingManager(context);
socialRatingManager.GetRatings(profile)
感謝。您能否提供更多關於我如何使用它來創建SharePoint列表視圖過濾器的信息? –