将DbContext注入FluentValidation验证器

时间:2011-08-17 19:28:20

标签: entity-framework asp.net-mvc-3 dependency-injection structuremap fluentvalidation

我正在使用FluentValidation库对我的某个模型强制执行唯一约束:

public class Foo {
    // No two Foos can have the same value for Bar
    public int Bar { get; set; }
}

public class FooValidator : AbstractValidator<Foo> {

    public FooValidator(ApplicationDbContext context) {
        this.context = context;

        RuleFor(m => m.Bar)
            .Must(BeUnique).WithMessage("Bar must be unique!");
    }

    private readonly ApplicationDbContext context;

    public bool BeUnique(int bar) {
        return !context.Foos.Any(foo => foo.Bar == bar);
    }
}

使用StructureMap注入ApplicationDbContext值。为了确保在每个请求结束时处理上下文,我尝试在ObjectFactory.ReleaseAndDisposeAllHttpScopedObjects()处理程序中为我的应用程序调用{​​{1}}。

不幸的是,似乎在我的验证器类能够完成其工作之前调用了EndRequest方法,并且在执行Application_EndRequest时处理了上下文。

是否有更好的方法可以使用FluentValidation库执行数据库相关的验证,或者是将此逻辑移动到其他位置的唯一解决方案(控制器操作,数据库本身或其他地方)?

1 个答案:

答案 0 :(得分:7)

也许验证器不是http作用域(但是单例)并且没有重新创建/注入新的上下文?在这种情况下,它会尝试使用先前请求中的已处置上下文。