我正在尝试实施验证并在阅读中:
https://github.com/ServiceStack/ServiceStack/wiki/Validation
我看到正在使用此方法。它似乎不在Funq容器上,我错过了什么?
//This method scans the assembly for validators
container.RegisterValidators(typeof(UserValidator).Assembly);
答案 0 :(得分:0)
如果您认为ServiceStack中缺少某种方法,那么它很可能是一种扩展方法。 RegisterValidators()是 ServiceStack.ServiceInterface.Validation 命名空间中的扩展方法。
您应该考虑使用ReSharper,因为它消除了C#开发的一大类问题,包括定位方法,auto包括命名空间,dll的自动引用等。
否则,如果由于某种原因你想在没有ReSharper的情况下继续,你可以使用T
快捷方式查看有助查找文件的ServiceStack GitHub Repo,否则使用Ctrl+Shift+F
来解决问题在ServiceStack的本地分支中进行全文搜索。