I`m building an application where I try to make a friend system.
Now, I work with 2 tables for that. 1st: Default AspNetUsers where i store user information.
2nd: Friends Table as below:
public class AspNetFriends
{
public int ID { get; set; }
public string friendFrom { get; set; }
public string friendTo { get; set; }
public bool isConfirmed { get; set; }
}
In this table both "friendFrom" and "friendTo" is string type, and receiving the registered users ID.
What i want to achieve is that when i display this table on my view, i want to show the Username of the same UserID thats either in the "friendFrom" or "friendTo" column.
You need to change your class as followed (I didn't test this):
Default application user of asp.net core
Model
Now you can get to the getters and setters of the aspnet user
Controller
View
@item.CreationUser.UserName