Commented Unassigned: Customizing all the error message with error code [7199]
Hats off. It is a great framework. I used it lot of time in my project. For my new project i have to pass error code and and customize all the error message.For example i have to generate error code...
View ArticleCommented Unassigned: New feature request : Track current failures in...
Currently, while executing validation rules, one can not check if any previous failure has happened. My suggestion is extend the validation context to have all current failures. And add the validation...
View ArticleNew Post: Windows Universal App
Hello community :-) I'm quite new to FluentValidation and so I'm wondering why FluentValidation cannot be installed on a Windows Phone 8.1 project? As I'm currently developing a sample application with...
View ArticleCommented Unassigned: Customizing all the error message with error code [7199]
Hats off. It is a great framework. I used it lot of time in my project. For my new project i have to pass error code and and customize all the error message.For example i have to generate error code...
View ArticleUpdated Wiki: Custom
Custom Validators There are two ways of creating custom validators. The first is to create a custom property validator, the second is to make use of the Custom method on AbstractValidator.Writing a...
View ArticleCommented Unassigned: Nuget support for windows phone 8.1 (windows runtime)...
Can you please add support for nuget installation for windows phone 8.1 (windows runtime)?Comments: Will try and do this for the next release. The FluentValidation.Portable binary should work just fine...
View ArticleCommented Unassigned: Customizing all the error message with error code [7199]
Hats off. It is a great framework. I used it lot of time in my project. For my new project i have to pass error code and and customize all the error message.For example i have to generate error code...
View ArticleNew Post: Windows Universal App
I just faced the same issue here... It seems to me that the current nuget package is not properly configured to support the Profile 259. When trying to install the nuget FluentValidation in a Profile...
View ArticleNew Post: Windows Universal App
Ignoring nuget for the moment, do the binaries work OK?
View ArticleNew Post: Windows Universal App
unfortunately I can't try it for now :( I'm working on a cross-platform project using xamarin and currently we're actively developing on iOS + Android... windows phone development will start later and...
View ArticleNew Post: IValidator additional property
Would you consider adding CreatorDescriptor() to the IValidator interface? Due to some custom things I am doing, I have parameters of IValidator<someclass> as my constructor argument - and that...
View ArticleNew Post: IValidator additional property
Optionally, how would I create my own IValidatorDescriptor class (inheriting from yours) that simply adds a few methods and implements a new interface....that is then used by fluent for instead of your...
View ArticleNew Post: IValidator additional property
CreateDescriptor is already part of the IValidator interface. You can call CreateDescriptor directly on your IValidator, and change your extension method to work against IValidatorDescriptor instead of...
View ArticleNew Post: Windows Universal App
Well, the binaries themselves should work just fine on 8.1 as far as I can see, so I'd suggest referencing the PCL manually and it should compile just fine, even if you don't have any devices. Let me...
View ArticleNew Post: IValidator additional property
Jeremy,I want the DI layer to inject a validator instance. Because I want it to inject a particular validator instance. So, I to use IValidator<T>. ...like this: public...
View ArticleNew Post: IValidator additional property
Trying to use a simple AbstractValidator derrived class: public abstract class EnhancedValidator<T> : AbstractValidator<T> { } Just the act of declaring the above class cause the DI to...
View ArticleNew Post: AutoFac IoC validators Issue
An update - Welcome to new features from Autofac.... Here is how you register all your validators: builder.RegisterAssemblyTypes(Assembly.GetExecutingAssembly())...
View Article