I need help in rendering a complex model.
I have a complex model with 2 class properties. All 3 classes (AddProjectQnrModel, ProjectModel, QTModel) have GroupId and GroupName properties.
public class AddProjectQnrModel
{
[Required]
public int GroupId { get; set; }
public string GroupName { get; set; }
public ProjectModel Project { get; set; }
public QCTModel QCT { get; set; }
}
In the view I am using editor templates :
@Html.EditorFor(x => x.Project, "_EditProject.cshtml")
@Html.EditorFor(x => x.QCT, "_QCT-v1.cshtml")
I cannot use @html.Partial as it will not bind the properties correctly, so I have to use editor templates.
On running the project I get this error:
Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required
Source Error:
Line 26:
Line 27: @Html.EditorFor(x => x.Project, "_EditProject.cshtml")
Line 28:
Line 29: