Fluent Validation is ASP.NET MVC integrated validation framework, that gives possibility to set validation rules using expressions. It is testable and completely compatible with IoC (Dependency Injection) pattern and TDD technique.
0
votes
0answers
8 views
Multiple RuleSet for a single Model Class with complex properties in MVC
I have a Model class which displays 2 different complex properties of same type as follows :-
public class MainClass
{
public Name CustomerName {get;set;}
public Name SupplierName {get;set;}
...
0
votes
0answers
6 views
Multiple Property validation and Dynamic Property Validation in MVC Fluent Validation
Here is my mvc model class
public class contactpreference
{
public string notification {get;set;}
public bool textmessage {get;set;}
public bool email {get;set;}
}
I need a fluent ...
0
votes
1answer
26 views
Fluent Validation for complex child objects by setting different RuleSet
I have a complex class structure as below.
public class Account
{
public List<Name> Person {get;set;}
public List<Address> Address {get;set;}
public string Email {get;set;}
...
-2
votes
0answers
6 views
validate textbox if checked check box using Fluent Validation in mvc4
i need to validate textbox whether exist value ,if checked checkbox in mvc4 application
forthat i use fluent validation. but it does not support.
Please help me to do it
0
votes
1answer
21 views
Have FluentValidation call a function with multiple parameters
I am using FluentValidation for the server side validation. Now I have had it call a function before with Must validation:
RuleFor(x => x.UserProfile).Must(ValidateProfile).WithMessage("We are ...
2
votes
1answer
27 views
FluentValidation Registration
ServiceStack version: 3.9.43
I am using the built-in IoC container and the built-in FluentValidation. I register my validators using a reference to the assembly where they are:
Plugins.Add(new ...
0
votes
0answers
8 views
How to get DisplayName attributes working with FluentValidation
How do I get FluentValidation to recognise the DisplayName attributes on my model and use them in error messages?
I'm using FluentValidation.MVC4 with Autofac, and at the moment, if I have this in my ...
1
vote
2answers
18 views
FluentValidation rule for null object
I've been trying to work out how to create a FluentValidation rule that checks if the instance of an object it's validating is not null, prior to validating it's properties.
I'd rather encapsulate ...
0
votes
0answers
14 views
FluentValidation: arguments in the Validator constructor
I am using the FluentValidation package in my ASP.net project. I would like to know how to pass a parameter to the Validator constructor.
Here is what I would like to do with my validator. Notice the ...
0
votes
2answers
40 views
FluentValidation, Validators lifecycle and using Validators to check against Db
I'm using FluentValidation in my MVC4 project. Every thing work perfectly and it's connected to my IoC (StructureMap).
I have 2 questions:
How should I manage lifecycle of my validators? Is it ok ...
0
votes
0answers
15 views
Set a message for a RuleSet fails in FluentValidation
It's possible in FluentValidation to have a specific error message for a RuleSet?
Something like:
RuleSet("LoginInformation", () =>
{
RuleFor(m => m.Email).NotEmpty().EmailAddress();
...
2
votes
1answer
75 views
model.isvalid mvc servicestack fluent validation
I'm using the library servicestack, and I have a problem using the library ServiceStack.FluentValidation.Mvc3, I followed the steps to configure this library, to make the asp.net mvc engine recognizes ...
0
votes
1answer
24 views
FluentValidation - Check value is a date only if NOT NULL
I have a bool along with a nullable DateTime property.
The DateTime is only required if the bool is set to true...
And I want to validate the date if the bool is true.
I have this expression so ...
2
votes
1answer
32 views
Using one Validator for multiple request DTOs? or multiple Validators for a single request DTO?
I have several ServiceStack request DTOs that implement an interface called IPageable. I have a validator that can validate the two properties that are on this interface. I think I'm going to end up ...
2
votes
1answer
33 views
What is the Ninject syntax for registration and getting FluentValidations IValidator
I am using fody.validar and it's work very well but I would like to use Ninject as the ValidationFactory instead of the home made one. Because I need to inject some services to validate things outside ...
0
votes
0answers
15 views
Validating object graphs with FluentValidation
I see how you can re-use a validator for Complex Properties and Collections, but how will it work when the reference is bi-directional? Will the example below produce an infinite loop, and if so what ...
0
votes
1answer
29 views
Validate several properties with conditions used FluentValidation
I have class with DateTime? properties. In general they are pair (request/receive) of dates. I used FluentValidation in my project. Can I write validator which will receive two DateTime? params?
...
0
votes
2answers
93 views
automapper showing error “Specified cast is not valid.”
i am getting error while mapping DataTable with the model
here is my code
if (file.ContentLength > 0)
{
var extension = Path.GetExtension(file.FileName);
if ...
1
vote
0answers
31 views
Why is IRequiresHttpRequest lazily loaded?
I'm trying to set up a set of rules that execute under one of 3 conditions:
HttpRequest.HttpMethod = "Put"
HttpRequest.HttpMethod = "Post"
HttpRequest == null
This last one will occur in the case ...
0
votes
2answers
76 views
Displaying detailed error messages other than that what is defined in Fluent Validation
I am using ASP.NET MVC 4 and the latest version of Fluent Validation. I am using Fluent Validation over data annotations.
I am looking at adding a validation error summary to my view where data is to ...
2
votes
3answers
106 views
re-using ServiceStack validation in Winforms offline client
We have a working website using ServiceStack as the back end that amounts to a complex data-entry form.
My users have requested an "offline editor" for the forms. To use the offline program, the ...
2
votes
1answer
156 views
Fluent Validation - One of n items has to be set
I have a class called 'CustomerDataContract' wich has three attributes: MobilePhone, OfficePhone and PrivatePhone. In order to get in touch with the customer at least one of the attributes has to be ...
8
votes
1answer
201 views
Custom response DTO in ServiceStack FluentValidation
I am evaluating FluentValidation in ServiceStack for handling automatic validation of request DTOs:
Plugins.Add(new ValidationFeature());
container.RegisterValidators(typeof(MyValidator).Assembly);
...
0
votes
0answers
40 views
Validate and compare by instance in FluentValidation
I have the following situation:
public class IndicatorRepository
{
public ValidationResult Save(Indicator model)
{
ValidationResult result = model.Validate();
if ...
0
votes
2answers
108 views
Fluent validation with dynamic message
I am trying to building custom validation with dynamic message in fluent validation library.
For example :
public class CreateProcessValidator : AbstractValidator<CreateProcessVM>
{
...
1
vote
1answer
97 views
Servicestack - Order of operation Fluent Validation and Request Filters
We have a few request filters and also utilise the validation feature.
[AttributeUsage(AttributeTargets.Method, Inherited = true)]
public class MyFilterAttribute : Attribute, IHasRequestFilter
{
...
1
vote
2answers
171 views
ASP.NET MVC FluentValidation with ViewModels and Business Logic Validation
I'm exploring using FluentValidation as it seems to be an elegant API for validation of my ViewModels upon model binding. I'm looking for opinions on how to properly centralize validation using this ...
0
votes
1answer
97 views
Pass context to collection validators in FluentValidation with MVC integration
does anyone know how I could pass a context for one validator to a collection validator while using the MVC4 integration of FluentValidation and the Ninject Validator Factory integration?
Example:
...
0
votes
1answer
39 views
Switch ASP.MVC Validation based on Model Instance and Context
For the same MVC controller action and model I would like to have different validation rules applied based on values on the model and based on what user is making the request.
For the same Controller ...
0
votes
2answers
153 views
MVC FluentValidation with entity framework in separate .dll
I have a separate .dll with our database model and partial classes etc in using FluentValidation which works fine (it's to be used by both by desktop barcoding terminals and also by our website).
For ...
0
votes
2answers
67 views
ASP MVC3 FluentValidation on format field
I have a registration page where the user registerer by email.
So fot the model I have a validation rule that states:
RuleFor(x => ...
0
votes
1answer
185 views
Ninject.Web.Mvc.FluentValidation and FluentValidation.MVC4
I have tried setting up Ninject.Web.Mvc.FluentValidation in my ASP.NET MVC4 project
as shown below:
var ninjectValidatorFactory = new NinjectValidatorFactory(kernel);
...
2
votes
1answer
93 views
ServiceStack and FluentValidation NOT firing
I must be overlooking something around getting the fluent-validation to fire within basic Service-Stack application I created.
I have been following the example found here. For the life of me I can't ...
0
votes
1answer
60 views
Validating certain parts of input string using Fluent Validation
I am using ASP.NET 4 and Fluent Validation.
I am trying to setup a rule that checks if my user name starts with "adm".
I have the following, giving me errors. I tried to follow the online sample ...
2
votes
1answer
273 views
Using C# fluent library in F#
I was trying to use FluentValidation library in F Sharp sample. But I got stuck as I can't even turn a simple C Sharp code to F Sharp code.
But then I thought that this wonderful library is just ...
0
votes
2answers
183 views
Autofac - how to resolve Func for ISomething from Singleton where ISomething is InstancePerHttpRequest
I'm trying to use Autofac to inject dependencies into FluentValidation in an MVC 4 app. I think I've got the strategy worked out, but I'm getting stuck with resolving my per-request ISomething from a ...
0
votes
1answer
104 views
FluentValidation With Autofac
We have just started using FluentValidation and have followed this post to allow us to use our globalized values: http://fluentvalidation.codeplex.com/discussions/394471.
However we are stuck on how ...
1
vote
0answers
126 views
fluent validation with when on client side
In a ASP.NET MVC4 application we are using FluentValidation for validating our models. In certain cases we only want to validate a property when another property has a value. We use the When keyword ...
0
votes
1answer
94 views
unit testing complex model with nested validation
I'm using fluentvalidation to do model validation. I have a class with a several nested classes or collections of classes, each with their own IValidator. Initially I was doing something like this ...
1
vote
3answers
92 views
How to force IRuleBuilder in AbstractValidator to act as 'if' statement?
This is my code:
RuleFor(x => x.Content).NotEmpty().Must(content => content.Trim().Length > 0);
I expect it should behave as
if (NotEmpty(x.Content) && x.Content.Trim().Length ...
0
votes
2answers
52 views
Validate Bool using Fluent Validator
I want to validate a bool property using fluent validator.
Which method should I use?
.NotNull() and .NotEmpty() functions didn't work.
Thanks.
1
vote
1answer
76 views
How to get validation rules from FluentValidator
Given a validator extending AbstractValidator and implementing IValidator, I would like to get it's rules. There seems to be no way to do this?
0
votes
2answers
62 views
Define Generic Type T dynamically at runtime
1.
I have a function DoSomeService with object response as parameter. response are different classes the internal code decides which one to use dynamically at runtime.
2.
I have a generic Fluent ...
1
vote
1answer
185 views
No error messages with Fluent Validation in ServiceStack
I am just starting to familiarise myself with ServiceStack and have come upon FluentValidation. I have followed the introductions and created a small Hello App.
My problem is that when I try to ...
1
vote
1answer
176 views
ASP.NET MVC ViewModels polymorphism
Folks,
I have architectural question:
I have several viewmodels of very similar looking items, with different data annotations:
public class VM1 {
[Display(Name="VM1 Field1")]
public string ...
3
votes
2answers
242 views
Unit test wiring of MVC, FluentValidation, and Ninject
I have set up an MVC web project with FluentValidation and Ninject using the Ninject.Extensions.Mvc.FluentValidation package. I followed the documentation of that package directly.
I'd like to write ...
1
vote
2answers
322 views
Dependency-Injected Validation in Web API
In MVC, I can create a Model Validator which can take Dependencies. I normally use FluentValidation for this. This allows me to, for example, check on account registration that an e-mail address ...
0
votes
0answers
76 views
FluentValidation class AbstractValidator.cs not found
I have a Visual Studio 2012 MVC4 Project targeting .Net 4.5.
I installed NugetPackages FluentValidation and FluentValidation.MVC4
Ensured I have no missing references throughout the Solution. ...
1
vote
1answer
483 views
Per-Request DependencyResolver in Web API
In MVC, a ModelValidatorProvider is instantiated and called to validate a model on each request. This means that in a DI environment, it can take dependencies on objects scoped within a single ...
0
votes
1answer
136 views
How to get a required error message for radio buttons using FluentValidation
I am using ASP.NET MVC 4 and the latest FluentValidation.
I am struggling to get my radio buttons to validate. When I click the submit button I need a selection in the radio button list.
In my view ...



