You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 24, 2021. It is now read-only.
public class TestModel
{
public List<Friend> Friends { get; set; }
}
public class Friend
{
public string Name { get; set; }
public int Age { get; set; }
}
And you post data such as the below, the model binder will not assign the List property to the posted data
If you have a model like so:
And you post data such as the below, the model binder will not assign the List property to the posted data
The text was updated successfully, but these errors were encountered: