I have a simple view like this:
@using MyProject.WebClient.Models
@model LoginClienteModel
<h1>@ViewBag.Title</h1>
@{
<text>
<h2>
<span>Olá @Model.Login . </span>
</h2>
<h3>
<span>Info: (@Model.ProperyOne)</span>
</h3>
</text>
}
<br/>
@Html.ActionLink("Option 1", "OptOne", "Home", new {pdModel = new OptOneModel{Login = Model.Login,Data = DateTime.Now.Date}});
When this view is showed, all data from model is displayed correctly. You can see I've another ActionLink, pointing to action OptOne. That action requires a parameter pdModel of type OptOneModel. As you can see, I instantiate it using current model values. But when my Action is executed, Login property is null, only Data is not null.
public ActionResult OptOne(OptOneModel pdModel)
{
return View(pdModel); // <-- Here only Data property is not null
}
I'm lost. I can't see what is wrong with that.
Unfortunately, you can't pass a complex type into a route value that way for an ActionLink. Manual invocation of an Action, I believe you can, but not for a link. So:
Meanwhile, server side: