Hi i'm stuck with this doubt:
How do I make i Join with 2 IRepositories? look my controller...
public ActionResult Colaboradores(int baseid)
{
IRepository<Colaborador> _repocolab = new SubSonicRepository<Colaborador>();
IRepository<Usuario> _repouser = new SubSonicRepository<Usuario>();
return View();
}
I need to join these IRepositories to get "Ativo" from Colaborador and "Nome" from Usuario making a Where in Colaborador with baseid parameter...
How can i do that??? Please :)