如何根据 属性 的运行时类型动态 select 验证器?

How to dynamically select a validator based on property's runtime type?

给定一个基 class,它有一个通用参数,用于定义 属性 的类型,并且在为派生的编写 Fluent Validator 时对另一个基类型有限制class 此验证器如何切换将哪个子验证器应用于通用 属性?

这里有一些示例 classes 来演示此配置:

public abstract class BaseParent<TChildType> where TChildType : BaseChild
{
    public TChildType Child {get; set;}
}

public abtract class BaseChild
{
    public sting ChildPropOne {get; set;}
}

public class ChildA : BaseChild
{
    public string ChildAPropOne {get; set;}
}

public class ChildB: BaseChild
{
    public string ChildBPropOne {get; set;}
}

public class ParentA<TChildType> : BaseParent<TChildType> where TChildType : BaseChild
{
    public string ParentAPropOne {get; set;}
}

public class ParentB<TChildType> : BaseParent<TChildType> where TChildType : BaseChild
{
    public string ParentBPropOne {get; set;}
}

我当前的设置为每个父类型 + 子类型组合强制使用不同的验证器 class。理想情况下,我可以为每个父项编写一个验证器,为每个子项编写一个验证器,并让父验证器能够选择调用哪个子验证器

您可以将子验证器实例注入父验证器并使用 SetValidator 用于 Child 属性:

public class ParentAValidator<TChildType> : AbstractValidator<ParentA<TChildType>> where TChildType : BaseChild
{
    public ParentAValidator(IValidator<TChildType> childValidator)
    {
        RuleFor(p => p.Child).SetValidator(childValidator);
    }
}