I need to get full name of an entry. I can retrieve Username from ChangedBy attribute.
How can I get the full name of a username?
I need to get full name of an entry. I can retrieve Username from ChangedBy attribute.
How can I get the full name of a username?
var user = Data.Get<IUser>()
.Where(u => u.Username == entry.ChangedBy)
.FirstOrDefault();
var userFullname = user.Name;