コード例 #1
0
        /// <summary>
        /// get all followee ids for a follower
        /// </summary>
        /// <param name="followerUserId"></param>
        /// <returns></returns>
        public IEnumerable <Guid> GetAllFollowingIds(Guid followerUserId)
        {
            var followerPid = MyUserManager.FindByIdAsync(followerUserId).Result.Profiles[OldHouseUserProfile.PROFILENBAME];

            return(FollowService.GetAllFollowingIds(followerPid));
        }