I have customized the default user identity and created several users. assuming that i am the admin and i want to manage other users information (Change property values). how can i get access to other users data if i have their IDs.
i can retrieve all users in a table and get their IDs in "asp-route-id"
@foreach (var item in Model.ApplicationUser)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.FirstName)
</td>
<td>
@Html.DisplayFor(modelItem => item.LastName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
<a class="nav-link text-dark" asp-area="Identity" asp-page="/Account/Manage/Index" title="Manage" asp-route-id="@item.Id">Edit</a>
I am stuck when using userManager to retrieve\Updating the other user information in Get & Post methods.
i managed to solve it using lambda expression
the ID should be obtained by asp-route
i have posted the below code for reference: