开发者

IRepositories Join in Subsonic

开发者 https://www.devze.com 2022-12-09 22:34 出处:网络
Hi i\'m stuck with this doubt: How do I make i Join with 2 IRepositories? look my controller... public ActionResult Colaboradores(int baseid)

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 Vi开发者_StackOverflow中文版ew();
    }

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 :)


Unfortunately the repository pattern isn't going to provide you with the ability to query across two repositories.

One method which you might be able to use is to create a view in the database which contains all the properties you need and then get subsonic to create a class that reflects this view for you.

0

精彩评论

暂无评论...
验证码 换一张
取 消