示例#1
0
 public static string getfollowerids(RequestIdAndCursorArgs args)
 {
     return CreateIdsText(
         twCtx.SocialGraph.Where(_ =>
             _.Type == SocialGraphType.Followers &&
             _.ID == args.id &&
             _.Cursor == args.cursor
         )
         .First()
     );
 }
示例#2
0
 public static string getfollowers(RequestIdAndCursorArgs args)
 {
     return CreateUsersText(
        twCtx.User.Where(user =>
            user.Type == UserType.Followers &&
            user.ID == args.id &&
            user.Cursor == args.cursor
        )
        );
 }