I'm developing a web application with asp.net mvc 3 and DDD. For my domain model validation, I've been using Fluent Validation. It's my first project with fluent validation and I'm still learning and modeling the entities.
My entity Customer has two properties that need to be unique in my system, these properties are Email and CPF (it's a Brasilian document and need to be unique in all system). I would like to know, how can I to it ?
Soo, my ideia is, inject (by constructor) my repository in my validation class of Customer and check it by a custom validation. The validation would be check using the repository if is there record in my table with this email different of an Id (0 for inserts and real Id for updates... I don't need to check the record I'm updating because it'd always be true).
I`m trying something like this:
public class CustomerValidator : AbstractValidator {
protected ICustomerRepository Repository { get; set; } // I intend to inject it by IoC with Unity.. is it possible ? public CustomerValidator(ICustomerRepository rep) { this.Repository = rep; // other properties RuleFor(customer = customer.Email) .EmailAddress() .NotEmpty() .Must(email = { return Repository.IsEmailInUse(email, ?); }); RuleFor(customer = customer.CPF) .NotEmpty() .Must(cpf = { return Repository.IsCPFInUse(cpf, ?); }); } }
I don't know if is possible, inject a repository inside the validator, and how could I get the Id in the .Must method extension ? Or is there another method to do it ?
if someone could help me, I would appreciate!
Thanks
PS: Sorry for my english