我正在使用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值.为了确保在每个请求结束时处理上下文,我试图在我的应用程序的EndRequest处理程序中调用ObjectFactory.ReleaseAndDisposeAllHttpScopedObjects().
不幸的是,似乎在我的验证器类能够完成其工作之前调用了Application_EndRequest方法,并且在执行FooValidator.BeUnique时处理了上下文.
是否有更好的方法可以使用FluentValidation库执行数据库相关的验证,或者是将此逻辑移动到其他位置的唯一解决方案(控制器操作,数据库本身或其他地方)?
解决方法
也许验证器不是http作用域(但是单例)并且不会重新创建/注入新的上下文?在这种情况下,它尝试使用先前请求中的已处置上下文.