I'm using the Fluent Validation framework in my ASP.net MVC 3 project. So far all of my validations have been very simple (make sure string is not empty, only a certain length, etc.) but now I need to verify that something exists in the database or not.

  1. Should Fluent Validation be used in this case?
  2. If the database validation should be done using Fluent Validation, then how do I handle dependencies? The validator classes are created automatically, and I would need to somehow pass it one of my repository instances in order to query my database.

An example of what I'm trying to validate might:

I have a dropdown list on my page with a list of selected items. I want to validate that the item they selected actually exists in the database before trying to save a new record.

Edit
Here is a code example of a regular validation in Fluent Validation framework:

[Validator(typeof(CreateProductViewModelValidator))]
public class CreateProductViewModel
{
    public string Name { get; set; }
    public decimal Price { get; set; }
}

public class CreateProductViewModelValidator : AbstractValidator<CreateProductViewModel>
{
    public CreateProductViewModelValidator()
    {
        RuleFor(m => m.Name).NotEmpty();
    }
}

Controller:

public ActionResult Create(CreateProductViewModel model)
{
    if(!ModelState.IsValid)
    {
        return View(model);
    }

    var product = new Product { Name = model.Name, Price = model.Price };
    repository.AddProduct(product);

    return RedirectToAction("Index");
}

As you can see, I never create the Validator myself. This works because of the following line in Global.asax:

FluentValidation.Mvc.FluentValidationModelValidatorProvider.Configure();

The problem is that now I have a validator that needs to interact with my database using a repository, but since I'm not creating the validators I don't know how I would get that dependency passed in, other than hardcoding the concrete type.

link|improve this question

I added an example hot to use the session Dependency injection in your validations. Hope it will help. P.S. No need for bounty just say you need an example... – gdoron Dec 6 '11 at 22:14
Except that your example is not giving me what I ask for. I told you already that I don't create the validator myself. It is created by the Fluent Validation framework automatically. FluentValidation needs a default parameterless constructor or it will fail to create the validator. – Dismissile Dec 8 '11 at 14:59
updated, You will have to use an IoC container to inject the Session object outside the constructor. – gdoron Dec 8 '11 at 17:52
feedback

4 Answers

up vote 1 down vote accepted
+50

This link may help you implement what you are looking for without having to manually instantiate and manually validate you models. This link is directly from the FluentValidation discussion forum.

link|improve this answer
This is exactly what I was looking for. I need to create a ValidatorFactory. Thanks! – Dismissile Dec 9 '11 at 15:55
Turns out after looking at the thread there is a NuGet package that has a Ninject validator factory already. – Dismissile Dec 9 '11 at 16:13
Glad I could help – mreyeros Dec 9 '11 at 17:45
feedback

Can't you just create your own validation method where in you would kick-off the database validation?

    RuleFor(m => m.name)
           .Must(BeInDatabase)

    private static bool BeInDatabase(string name)
    {
        // Do database validation and return false if not valid
        return false;
    }
link|improve this answer
feedback

I'm using FluentValidation for DataBase validations. just pass the Validation class the session in the Ctor. and do the validation inside the action something like:

var validationResult = new ProdcutValidator(session).Validate(product);

Update: Based on your example I add my example...

public class CreateProductViewModel
{
    public string Name { get; set; }
    public decimal Price { get; set; }
}

public class CreateProductViewModelValidator : abstractValidator<CreateProductViewModel>
{
    private readonly ISession _session;
    public CreateProductViewModelValidator(ISession session)
    {
        _session = session;
        RuleFor(m => m.Name).NotEmpty();
        RuleFor(m => m.Code).Must(m, Code => _session<Product>.Get(Code) == null);

    }
}
Controller:

public ActionResult Create(CreateProductViewModel model)
{
    var validator = new CreateProductViewModelValidator();
    var validationResult =validator.Validate(model);

    if(!validationResult.IsValid)
    {
        // You will have to add the errors by hand to the ModelState's errors so the
        // user will be able to know why the post didn't succeeded(It's better writing 
        // a global function(in your "base controller" That Derived From Controller)
        // that migrate the validation result to the 
        // ModelState so you could use the ModelState Only.
        return View(model);
    }

    var product = new Product { Name = model.Name, Price = model.Price };
    repository.AddProduct(product);

    return RedirectToAction("Index");
}

Second update:
If you insist using parameterless constructor you will have to use some Inversion Of control container, a static class that is something like the Factory of your objects. use it like this:

public class CreateProductViewModelValidator : abstractValidator<CreateProductViewModel>
{
    private readonly ISession _session;
    public CreateProductViewModelValidator()
    {
        _session = IoC.Container.Reslove<ISession>();
        RuleFor(m => m.Name).NotEmpty();
        RuleFor(m => m.Code).Must(m, Code => _session<Product>.Get(Code) == null);

    }
}

You can find many IoC containers, most famous are Windsor and Ninject, You will need to register- instruct the container once to resolve all the ISession to return your's session object.

link|improve this answer
I don't ever create my validators manually. This is handled by Fluent Validation for me. – Dismissile Nov 29 '11 at 21:58
1  
@Dismissile show me your codes – gdoron Nov 30 '11 at 5:37
Updated my post with some code. – Dismissile Nov 30 '11 at 14:49
@Dismissile, So do I... – gdoron Nov 30 '11 at 17:34
feedback

The other way this could work for you is using Constructor injection. While this method isn't as clear cut as using an IoC library, it may help if you have a static way of accessing or fetching your session.

public class CreateProductViewModelValidator
{
    private ISession _session;

    public CreateProductViewModelValidator()
        :this(SessionFactory.GetCurrentSession()) //Or some other way of fetching the repository.
    {

    }

    internal CreateProductViewModelValidator(ISession session)
    {
        this._session = session;
        RuleFor(m => m.Name);//More validation here using ISession...
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.