コード例 #1
0
 /// <summary>
 /// The method of forming a string name = Last Name + First Name, which will be added to the list.
 /// Called by method Connect To Server ConnectToServer.
 /// For Storage4.
 /// </summary>
 /// <param name="context">The context of the interaction with the database.</param>
 /// <param name="f">The object to be added such as Friends.</param>
 /// <param name="listOfFriends">Friend list.</param>
 /// <returns>The format string "{Last Name} + {First Name}".</returns>
 public string FindFriendsStorage4(Storage4Context context, Friends f, List<int> listOfFriends)
 {
     var queryFriend = context.User.Where(x => x.Id == f.Friend_Id);
     var elementToAdd = queryFriend.ToList();
     listOfFriends.Add(elementToAdd[0].Id);
     return (elementToAdd[0].Last_Name + ' ' + elementToAdd[0].First_Name);
 }
コード例 #2
0
 /// <summary>
 /// Methods of forming a string name = Last Name + First Name, which will be added to the list.
 /// Called from the methods GetUserInfoFromStorage.
 /// </summary>
 /// <param name="context">The context of the interaction with the database.</param>
 /// <param name="f">The object to be added.</param>
 /// <param name="frm">Instance a modal window.</param>
 private static string FindFriendsStorage5(Storage5Context context, Friends f, InfoWindow frm)
 {
     var queryFriend = context.User.Where(x => x.Id == f.Friend_Id);
     var elementToAdd = queryFriend.ToList();
     frm.ListOfFriendsParam = elementToAdd[0].Id;
     return (elementToAdd[0].Last_Name + ' ' + elementToAdd[0].First_Name);
 }