10

是否必须在应用程序 Bootstrapper 中添加任何配置代码才能在 Nancy 中启用 FluentValidation?

按照https://github.com/NancyFx/Nancy/tree/master/src/Nancy.Demo.Validation中的示例,我在尝试使用 this.Validate on model 时收到以下异常消息:无法找到模型验证器工厂.

我正在使用 Nancy 版本 0.11.0.0

4

1 回答 1

9

您是否使用其中一个引导程序包(autofac、ninject、unity、windsor、structuremap)?如果是,则需要从引导程序类型继承,覆盖 ConfigureApplicationContainer 并在容器中注册类型。如果您使用的是默认引导程序,那么它应该自行连接

如果没有下一个版本 0.12,无论您使用什么引导程序,它都会自动连接

于 2012-08-29T13:03:37.580 回答