I have:
[Validator(typeof(ProductPricingViewModelValidator))]
public class ProductPricingViewModel {
public int Id { get; set; }
public List<PriceRecord> PriceRecords { get; set; }
}
[Validator(typeof(PriceRecordValidator))]
public class PriceRecord
{
public int ProductPricingID { get; set; }
public int? CurrencyID { get; set; }
public double PriceValue { get; set; }
public bool IsReference { get; set; }
}
public class PriceRecordValidator : AbstractValidator<PriceRecord>
{
public PriceRecordValidator()
{
RuleFor(x => x.CurrencyID).NotNull();
RuleFor(x => x.PriceValue).NotNull();
RuleFor(x => x.ProductPricingID).NotNull();
}
}
public class ProductPricingViewModelValidator : AbstractValidator<ProductPricingViewModel>
{
public ProductPricingViewModelValidator()
{
RuleFor(x => x.ProductID).NotNull();
//RuleFor(x => x.PriceRecords).SetCollectionValidator(new PriceRecordValidator());
}
}
I want to remove [Validator(typeof(PriceRecordValidator))] from PriceRecord class and make rule RuleFor(x => x.PriceRecords).SetCollectionValidator(new PriceRecordValidator()); to be conditional - in some cases validate PriceRecords, in some cases - don't.
For PriceRecords collection I use nested list technique described in this post - http://www.joe-stevens.com/2011/06/06/editing-and-binding-nested-lists-with-asp-net-mvc-2/ The basic idea of this technique that html input name indexes changed from int to Guid to avoid dynamic adding and removing list input elements using ajax.
The problem: when I use attribute [Validator(typeof(PriceRecordValidator))] on PriceRecord class - everything works fine, and I get invalid inputs in PriceRecords list highlighted BUT if I remove this attribute and start using RuleFor(x => x.PriceRecords).SetCollectionValidator(new PriceRecordValidator()); ModelState.Errors keys have int indexes instead of Guid indexes used on HTML page.
I don't know what is the difference, but when attribute is used - everything works fine and invalid fields are highlighted (because the valid Guid indexes are used) when I remove attribute and use SetCollectionValidator instead - validation works too, but with invalid int indexes instead of Guid indexes. That adds errors to a list, but I can't highlight the inputs on the page because of different PriceRecord input IDs and names.
I spent half day finding the reason but was not able to solve it.
Can anyone suggest how to make SetCollectionValidator use the right Guid indexes instead of default int ?
Thank you.