Skip to content
New issue

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

Nested Model not binding data in FromFrom request #19

Open
VinhTue opened this issue Dec 27, 2018 · 2 comments
Open

Nested Model not binding data in FromFrom request #19

VinhTue opened this issue Dec 27, 2018 · 2 comments
Assignees

Comments

@VinhTue
Copy link

VinhTue commented Dec 27, 2018

No description provided.

@VinhTue VinhTue changed the title Nested Model not binding in FromFrom request Nested Model not binding data in FromFrom request Dec 27, 2018
@billbogaiv billbogaiv self-assigned this Dec 27, 2018
@artyom-p
Copy link

Same for me.

image

Items are always null

@drgrieve
Copy link

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants