New Post: How do you validate a list of ints using fluent validation?
My model has: public List<int> WindowGlassItems { get; set; } Model Validator hasRuleFor(x => x.WindowGlassItems).SetCollectionValidator(new WindowGlassItemsValidator()); public class...
View ArticleCreated Unassigned: UnitTest helpers don't support RuleSets [7176]
Currently you can't pass the rule set to any of UniTest helper methods to run test for the specific rule in the specific RuleSet. I would like to see an optional ruleSet parameter in...
View ArticleEdited Unassigned: UnitTest helpers don't support RuleSets [7176]
Currently you can't pass the rule set to any of UniTest helper methods to run test for the specific rule in the specific RuleSet. I would like to see an optional ruleSet parameter in...
View ArticleNew Post: Multi-Tenant Validation
Hi, I've been reading up on FluentValidation and seems like a great solution. However, I can not determine how or if it can run in a multi-tenant project. My tenants want to be able to have their own...
View ArticleNew Post: FluentValidation setting RuleFor in Validate instead of Constructor?
I'm new to FluentValidation, so please bear with me if I'm being an idiot. I'm looking at using MVC4 with FluentValidation to provide validation rather than using design-time attributes which don't fit...
View ArticleNew Post: How to by pass calling the InstanceCache?
still stuck with this issue! :( anyone?
View ArticleCreated Unassigned: MVC’s DefaultModelBinder does not Validate The Object [7177]
I'm using package fluentvalidation.mvc 5 for asp.net mvc 5.1.2 (vs 2013) and followed this tutorial http://fluentvalidation.codeplex.com/wikipage?title=mvc&referringTitle=DocumentationNow I am...
View ArticleNew Post: Rulesets with Webforms
Hi Jeremy, I'm loving FluentValidation. Thanks for all the effort you have put into it however I'm having an issue with Rulesets and WebForms. There seems to be no way to specify with Ruleset to use...
View ArticleNew Post: Rulesets with Webforms
Resolved using above. Was calling similar code elsewhere with errors.
View ArticleNew Post: MustAsync Silverlight
I may be misunderstanding but I'm having trouble using MustAsync in Silverlight. It seems to be hanging and not returning after task completion. The rule is defined as:RuleFor(x => x.SomeInput)...
View ArticleNew Post: Using NSubstitute is it possible to verify which ruleset was used...
Hi there Apologies if this is not the appropriate place for this question... It could be an Nsubstitute question - hopefully someone can help me though... :) I use a lot of rulesets for the validation...
View ArticleCommented Unassigned: Czech and Finish translations [7175]
Czech and Finish translations resx files attachedComments: Added in latest commit - thanks
View ArticleClosed Unassigned: Czech and Finish translations [7175]
Czech and Finish translations resx files attached
View ArticleSource code checked in, #81e137a28eda4d829ee082981d8bb4770939f1e9
Added Czech and Finish translation of error messages
View ArticleNew Post: PCL nuget packages for 158
Hi Apologies for the late reply, I've been out of the country without internet access. I'm not able to reproduce this. I created a blank PCL project targeting NET 4.5, Silverlight 5, WP8, Windows Store...
View ArticleSource code checked in, #8da0e9c4a80111ddc70c8d833ab6dbc2f6b55ff2
Merge pull request #31 from Kukkimonsuta/master Allow nullable target properties for greater/less validators
View ArticleNew Post: PCL nuget packages for 158
Hello, you're right. I don't know what happened, maybe a nuget update? Thanks!
View ArticleNew Post: How do you validate a list of ints using fluent validation?
Hi AbstractValidator is designed to be used against an object whose properties being validated, so using an AbstractValidator<int> isn't something that I'd suggest doing. A better approach would...
View ArticleNew Post: How to by pass calling the InstanceCache?
Apologies for the late reply. I've been out of the country with no internet access. The simplest thing to do would be to use the overload of LessThan that takes a lambda. This way the call to...
View Article