本文整理汇总了C#中Activity.GetRelatedUsers方法的典型用法代码示例。如果您正苦于以下问题:C# Activity.GetRelatedUsers方法的具体用法?C# Activity.GetRelatedUsers怎么用?C# Activity.GetRelatedUsers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Activity
的用法示例。
在下文中一共展示了Activity.GetRelatedUsers方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateUserFollowedActivities
protected virtual void CreateUserFollowedActivities(Activity activity)
{
//TODO: Run this method in a new thread (check connection creation)
//TODO: Maybe optimized by creating a stored procedure?
//Get user id's of all actors of this activity
var actorUserIds = activity.GetActors().Cast<long>().ToList();
if (actorUserIds.IsNullOrEmpty())
{
//No actor of this activity, so, no one will follow it.
return;
}
//Get all followers of these actors
var followerUserIds = GetFollowersOfUserIds(actorUserIds);
//Add also actors (if not includes)
followerUserIds = followerUserIds.Union(actorUserIds).ToList();
//Get id's of all related users of this activity
var relatedUserIds = activity.GetRelatedUsers().Cast<long>().ToList();
//Add also related users (if not includes)
followerUserIds = followerUserIds.Union(relatedUserIds).ToList();
//Add one entity for each follower and actor
foreach (var followerUserId in followerUserIds)
{
_userFollowedActivityRepository.Insert(
new UserFollowedActivity
{
User = _userRepository.Load(followerUserId),
Activity = activity,
IsActor = actorUserIds.Contains(followerUserId),
IsRelated = relatedUserIds.Contains(followerUserId)
});
}
}