Unobtrusive client validation data attributes are not rendered for nested property rules
问题 Using FluentValidation 4.4, the following rules emit the correct unobtrusive validation data attributes on input fields: RuleFor(e => e.PrimaryContact).NotEmpty(); rendering the following html: <input class="text-box single-line k-textbox input-validation-error" data-val="true" data-val-required="'Primary Contact' should not be empty." id="PrimaryContact" name="PrimaryContact" type="text" value=""> However, a rule with a nested property does not emit any validation data attributes: RuleFor(e