This is a migrated thread and some comments may be shown as answers.

Query many-to-many tables

1 Answer 40 Views
LINQ (LINQ specific questions)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Marcel
Top achievements
Rank 1
Marcel asked on 30 Jul 2015, 12:12 PM

Hello,

 I just strated out with the OpenAccess framework and modeled, the following data structure:

User <--> UserRole <--> Module

So a many to many relation exists between User and UserRole and a many to many relation exist between UserRole and Module.

The OpenAcess framework has hidden the two many-to-many junction tables.

 

I now want to run a query which gives me all Modules for a given user.

When I execute the following query I get the runtime exception "Join left side undefined".

 

List<Module> modules = (from geb in Context.Gebruikers
                        from gr in Context.GebruikerRoles
                        from mod in Context.Modules
                        where geb.GebruikerID == gebruikerId
                        select mod).ToList();

 

What am I missing here?

Marcel 

 

1 Answer, 1 is accepted

Sort by
0
Accepted
Viktor Zhivkov
Telerik team
answered on 04 Aug 2015, 10:53 AM
Hi Marcel,

I am afraid that the best way to express a query spanning two many-to-many relationship is to hand craft a stored procedure. LINQ is not particularly suited for such scenario and you may have to split the query into several pieces, execute them one by one and merge the results in-memory which in most cases is a lot slower and inefficient.
Here is a link to our online documentation that can guide you how to execute a stored procedure.

If you need any further assistance do not hesitate to contact us again.

Regards,
Viktor Zhivkov
Telerik
 
Check out the latest announcement about Telerik Data Access vNext as a powerful framework able to solve core development problems.
Tags
LINQ (LINQ specific questions)
Asked by
Marcel
Top achievements
Rank 1
Answers by
Viktor Zhivkov
Telerik team
Share this question
or