We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Same for me.
Items are always null
Sorry, something went wrong.
Same issue. Resolved by adding FromForm to the property to use default model binding,
public ActionResult AdminAdd(CompanyDetailViewModel model)
public class CompanyDetailViewModel : CompanyViewModel { public InviteEditModel Admin { get; set; } }
Form data posted Id: 1 Admin.Email: jim@jim.com Admin.FirstName: 1 Admin.LastName: 2
Admin model is null.
Workaround: public ActionResult AdminAdd([FromForm]CompanyDetailViewModel model)
billbogaiv
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: