on one page i am rendering other view this way:
<% Html.RenderPartial("Angebotspruefung", new ViewDataDictionary {{ "OpportunityEditModel", Model }} }); %>
and on rendered view I retrive this model this way:
<%
OpportunityDetailsEditModel model = (OpportunityDetailsEditModel)ViewData["OpportunityEditModel"];
%>
and there is sth very very wird, i can acces properties with <%= model.Property %>
but lambda does't work , so this won't work
<%= Html.HiddenFor(m => m.Property) %>