I have the following problem in my MVC 5 web app. I used database first approach and the entity framwork to create a table [accountlist]
that has a foreign key relationship on [UserId]
to the [Id]
column from [AspNetUsers]
. Right now the pertaining accountlist.cshtml
contains a dropdown menu. I also tried @Html.HiddenFor(model => model.UserId, new { @Value = HttpContext.Current.User.Identity.Name})
but the problem is how that I need the correct userid and not the username (I don't want the [UserName]
from [AspNetUsers]
to be an primary key).
Unfortunately, HttpContext.Current.User.Identity.GetUserId()
as suggested in this solution says that Identity contains no definition for GetUserId().
Does anyone has solution?
Thanks in advance!