I have two classes - Page and SiteVersion, which have a many to many relationship. Only SiteVersion is aware of the relationship (because the site is modular and I want to be able to take away and drop in the module that SiteVersion belongs to).

How would I therefore select pages based on criteria of SiteVersion?

For example, this doesn't work:

SELECT p FROM SiteVersion v JOIN v.pages p WHERE v.id = 5 AND p.slug='index'

I get the error:

[Doctrine\ORM\Query\QueryException]
[Semantical Error] line 0, col -1 near 'SELECT p FROM': Error: Cannot select entity through identification variables without choosing at least one root entity alias.

Even though I can select "v" with this query.

I think I could possibly resolve this by introducing a class for the relationship (a PageToVersion class) but is there any way without doing that, or making it bidirectional?

link|improve this question

61% accept rate
feedback

3 Answers

I've found a possible solution for this problem here.

According to that page, your query should look something like this:

SELECT p FROM SiteVersion v, Page p WHERE v.id = 5 AND p.slug='index' AND v.page = p;

Does it solve your problem?

link|improve this answer
No. The problem is, it's a many-to-many, not one-to-many. It's v.pages, not v.page but even if I do: "SELECT p FROM SiteVersion v, Page p WHERE v.id = 5 AND p.slug='index' AND v.pages = p" that doesn't work either (Error: Invalid PathExpression. StateFieldPathExpression or SingleValuedAssociationField expected.) – Gnuffo1 Mar 25 '11 at 13:04
Then why not you specify the other side of the relationship in your schema definition? – Imi Borbas Mar 25 '11 at 13:07
Because I want to be able to just drop this module in without affecting anything that's already there. – Gnuffo1 Mar 25 '11 at 13:10
Is using native sql to select at least the page id-s is a viable option for you? Of course it would be much cleaner to use DQL... – Imi Borbas Mar 25 '11 at 13:13
feedback

I think you need to select the SiteVersion in your query too:

SELECT v, p FROM SiteVersion v JOIN v.pages p WHERE v.id = 5 AND p.slug='index'

You will get an array of SiteVersion entities which you can loop through to get the Page entities.

link|improve this answer
feedback

I couldn't figure out how to get native queries working, so have resolved in a slightly hacky way:

$id = $em->getConnection()->fetchColumn("SELECT
    pages.id
    FROM
    pages
    INNER JOIN siteversion_page ON siteversion_page.page_id = pages.id
    INNER JOIN siteversions ON siteversion_page.siteversion_id = siteversions.id
    WHERE siteversions.id = 1
    AND pages.slug = 'index'");

$page = $em->find('Page', $id);

I don't like it because it results in more queries to the database (especially if I need to fetch an array of pages instead of one) but it works.

Edit: I've decided to just go with a class for the association. Now I can do this query:

SELECT p FROM Page p, SiteVersionPageLink l
WHERE l.page = p AND l.siteVersion = 5 AND p.slug = 'index'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.