Model properties are all null after retrieving from POST request.
Check if they are properties instead of attributes.
Example: instead of
public String property;
Use
public String property { get; set; }
Bruce Ng's software development blog
An archive of solutions of programming problems I have faced in my career
Model properties are all null after retrieving from POST request.
Check if they are properties instead of attributes.
Example: instead of
public String property;
Use
public String property { get; set; }