Updated Wiki: NuGet Packages
NuGet Packages are availableFluentValidationThe core FluentValidation assembly available either for .NET 4.0/4.5 or as a portable class library for Silverlight and Windows Phone 8 Install-Package...
View ArticleUpdated Release: 5.1 (Mar 11, 2014)
If you find FluentValidation useful, please consider making a donation. Changes in this release:Applied pull request: Apply the same display name resolving to the target property as to the source...
View ArticleUpdated Release: 5.1 (Mar 11, 2014)
If you find FluentValidation useful, please consider making a donation. Changes in this release:Applied pull request: Apply the same display name resolving to the target property as to the source...
View ArticleReleased: 5.1 (Mar 11, 2014)
If you find FluentValidation useful, please consider making a donation.Changes in this release:Applied pull request: Apply the same display name resolving to the target property as to the source...
View ArticleNew Post: Possible to create validator with two types?
Really like your solution, which I've just started playing with. I note that custom validators override AbstractValidator, which takes a single type as a parameter. I'd like to create a validator that...
View ArticleNew Post: Is it necessary to turn off "Break when Exception is"
The following test check whether the method #PostLeaseApplication will throw an exception if it is passed a customer with an invalid 'MagentoCustomerId' field.It is designed so that validation will...
View ArticleNew Post: Is it necessary to turn off "Break when Exception is"
Hi Alex I haven't seen this before myself. Do you have "just my code" debugging enabled or disabled? (Tools->options->debugging) Also, are you using a debug or release build of FluentValidation?
View ArticleNew Post: Validation only specified property in base class through IValidation
Thanks - that worked perfectly.
View ArticleCreated Unassigned: Possible to use same model validate two times? [7172]
public class MyModel{ public int Id { get; set; } public string Name { get; set; } public int Gender{ get; set; } public string Model{ get; set; }}public class SaveModelValidator :...
View ArticleEdited Unassigned: Possible to use same model validate two times? [7172]
public class MyModel{ public int Id { get; set; } public string Name { get; set; } public int Gender{ get; set; } public string Model{ get; set; }}public class SaveModelValidator :...
View ArticleEdited Unassigned: Possible to use same model validate two times? [7172]
```public class MyModel{ public int Id { get; set; } public string Name { get; set; } public int Gender{ get; set; } public string Model{ get; set; }}public class SaveModelValidator :...
View ArticleEdited Unassigned: Possible to use same model validate two times? [7172]
```public class MyModel{ public int Id { get; set; } public string Name { get; set; } public int Gender{ get; set; } public string Model{ get; set; }}public class SaveModelValidator :...
View ArticleEdited Unassigned: Possible to use same model validate two times? [7172]
```public class MyModel{ public int Id { get; set; } public string Name { get; set; } public int Gender{ get; set; } public string Model{ get; set; }}public class FirstValidator :...
View ArticleNew Post: Possible to use same model validate two times?
Hi guys,the first time use fv.I want to validate like this,but for me the first validator is not working fine:(.do you have any good idea? thanks. public class MyModel { public int Id { get; set; }...
View ArticleNew Post: Possible to use same model validate two times?
I don't really understand your question. Could you explain what you're actually trying to do? What do you mean when you say that it doesn't work? Do you get an error?
View ArticleClosed Unassigned: Possible to use same model validate two times? [7172]
```public class MyModel{ public int Id { get; set; } public string Name { get; set; } public int Gender{ get; set; } public string Model{ get; set; }}public class FirstValidator :...
View ArticleNew Post: Possible to use same model validate two times?
just want to use one model to validate two times.the firstvalidator() will be used in one page ,and the sencond will be used in another page.public class MyModel { public int Id { get; set; } public...
View ArticleNew Post: Possible to use same model validate two times?
How are you invoking the validators? Are you manually calling the Validate method, or are you relying on the MVC Integration?
View ArticleNew Post: Possible to create validator with two types?
You wouldn't typically do this with FluentValidation. FV is designed primarily to work against a view-model/input-model type architecture where everything is already flattened. So you'd typically...
View Article