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:
- the Name must not be null or empty
- 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?