I have this entity in my project:

public class Employee : Entity
{
    protected Employee()
    {
        Departments = new List<Department>();
    }

    [NotNullNotEmpty]
    public virtual string Name { get; set; }
    public virtual Department PrimaryDepartment { get; set; }
    public virtual IList<Department> Departments { get; set; }
}

I have added the following validation definition:

public class EmployeeValidation : ValidationDef<Employee>
{
    public EmployeeValidation()
    {
        ValidateInstance
            .By((employee, context) => employee.Departments.Contains(employee.PrimaryDepartment))
            .WithMessage("The primary department must match one of the departments.");
    }
}

As you can see, there are two rules:

  1. the Name must not be null or empty
  2. the PrimaryDepartment must be in the Departments collection

I have prepared two Employees, one that violate the first rule and one that validates the second rule. When I call IsValid() on either Employee, it correctly returns false.

When I save the first Employee, an InvalidStateException is thrown. However, there is no InvalidStateException thrown when I save the second Employee!

I have checked the ValidatorEngine instance and it does contain my EmployeeValidator in the validators collection.

As far as I know, the event listeners call IsValid on the entity, right? That means it shouldn't matter whether an attribute or ValidationDef is concerned.

I have also checked whether the validator instance was actually the same instance as the one I created when configuring it and found the following.

The event listeners are apparently not configured. Doing the following solves the problem (the saving the second Employee now causes the expected exception) but ofcourse this should happen automatically somewhere, somehow:

// NHibernate.Cfg.Configuration configuration = ...
((NHibernate.Validator.Event.ValidatePreInsertEventListener)configuration.EventListeners.PreInsertEventListeners[0]).Initialize(configuration); 

The problem this causes is that, because the listener is not configured, it does not have a ValidationEngine assigned and therefore creates its own instance, which ofcourse is not configured the way I did configure my instance.

So this means the question is actually: how do I make NHibernate Validator initialize its event listeners?

link|improve this question

78% accept rate
feedback

1 Answer

I had the same problem you were having and it turns out I wasn't initializing my SharedEngineProvider and when it went to validate my entity it was creating a new instance of a validator engine to try and validate it. This engine did not contain the rules that I originally configured it with obviously. Here is the post with my problem and solution:

NHibernate Validator not integrating with Fluent NHibernate

Edit:
Also make sure that you have the following (this is also in the post above):

//Registering of Listeners and DDL-applying here
ValidatorInitializer.Initialize(cfg, engine);
link|improve this answer
Thanks but my engine instance is actually containing the rules. Its just that the PreInsertEventListener that NHV registers, doesn't get initialized for some reason. – Sandor Drieënhuizen Apr 17 '11 at 20:57
If you validate your 2nd instance first does it make a difference? Do you still not get the InvalidStateException? – Cole W Apr 17 '11 at 21:11
Also take a look at my edit above. – Cole W Apr 17 '11 at 21:19
feedback

Your Answer

 
or
required, but never shown

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