带有 ValidationAttribute 的 Autofac 属性注入

Posted

技术标签:

【中文标题】带有 ValidationAttribute 的 Autofac 属性注入【英文标题】:Autofac property injection with ValidationAttribute 【发布时间】:2013-03-30 14:04:00 【问题描述】:

我有一个如下所示的 ValidationAttribute:

public class RegistrationUniqueNameAttribute : ValidationAttribute

    public IRepository<User> UserRepository  get; set; 

    public override bool IsValid(object value)
    
       //use UserRepository here....
    

在我的容器设置中(在应用程序启动中)我有这个:

        builder.Register(c => new RegistrationUniqueEmailAttribute
            
                UserRepository = c.Resolve<IRepository<User>>()
            );

但是,在调试时,UserRepository 的值始终为 null,因此不会注入该属性。

我的容器设置有误吗?

我真的不想使用DependencyResolver.Current.GetService&lt;IRepository&lt;User&gt;&gt;(),因为这不是可测试的......

【问题讨论】:

ValidationAttributes 不是由 Autofac 创建的。 CLR 本身负责创建它们。 这个问题暗示它应该工作? ***.com/questions/12505245/… 这仅在您覆盖默认 DataAnnotationsModelValidator 时有效,但我在 Autofac 源代码或在线中找不到任何相关信息。也许我错过了什么。 @Steven 不,你没有遗漏任何东西。在经历了类似的野鹅追逐之后,我用 cmets 装饰了这个冒犯性的问题。 【参考方案1】:

不,Autofac v3 对 ValidationAttribute 和朋友们没有做任何特别的事情 [Autofac.Mvc 做了很多强大的事情,例如过滤器属性]。

我间接解决了in this answer的问题,可以写:

class MyModel 

    ...
    [Required, StringLength(42)]
    [ValidatorService(typeof(MyDiDependentValidator), ErrorMessage = "It's simply unacceptable")]
    public string MyProperty  get; set; 
    ....


public class MyDiDependentValidator : Validator<MyModel>

    readonly IUnitOfWork _iLoveWrappingStuff;

    public MyDiDependentValidator(IUnitOfWork iLoveWrappingStuff)
    
        _iLoveWrappingStuff = iLoveWrappingStuff;
    

    protected override bool IsValid(MyModel instance, object value)
    
        var attempted = (string)value;
        return _iLoveWrappingStuff.SaysCanHazCheez(instance, attempted);
    

(还有一些辅助类包括连接到 ASP.NET MVC...)

【讨论】:

以上是关于带有 ValidationAttribute 的 Autofac 属性注入的主要内容,如果未能解决你的问题,请参考以下文章

在实现自定义ValidationAttribute时,我应该覆盖哪种IsValid方法

MVC ValidationAttribute 验证一个字段必须大于另一个字段

csharp MVC ValidationAttribute确保属性为空。听起来很奇怪,但是我为一个隐藏在css中的反机器人字段创建但是机器人st

MVC 自定义验证:比较两个日期

自定义参数验证

Blazor University (31)表单 —— 验证