I'd like to have a user in my model. By user I mean something that holds username. Email and the rest of the stuff would also be nice.
I tried like that:
Model:
public class MyModel
{
public virtual MembershipUser Finder { get; set; }
...
}
Controller:
[HttpPost]
public ActionResult Create(MyModel mymodel)
{
if (ModelState.IsValid)
{
//mymodel.FinderId = Membership.GetUser(User.Identity.Name).ProviderUserKey;
mymodel.Finder = Membership.GetUser(User.Identity.Name);
_repo.Save(mymodel);
return RedirectToAction("Index");
}
return View(mymodel);
}
And than in a view:
@Html.DisplayFor(modelItem => item.Finder.UserName)
While in the controller the poperty UserName was set to "admin" in the view it was null. On the other hand email was set in both controller and view.
What am I doing wrong?
HttpGet.. notHttpPost.. (post is once it's been submitted). – Simon Whitehead Jan 21 at 23:50[Authorize]attribute. – Mr. Young Jan 21 at 23:55