Reputation: 1
This is my sql query: subsonic version 2.1.0.0 No Linq (.net 2.0)
select
(
select Title from MenuTranslation mnu2 where
mnu2.languageid = 1 and mnu2.menuelementid = menutranslation.menuelementid
)as BaseTitle, *
from menutranslation
inner join menuelement on menuelement.id = menutranslation.menuelementid
where menuelementid
in (select id from menuelement where parentid = 4)
and languageid = 2
Upvotes: 0
Views: 213
Reputation: 8233
You would need to use the inlineQuery class where you generate the sql yourself to accomplish what you are going after
Upvotes: 0
Reputation:
Not at this time - however you can run IN queries with a SELECT - not subqueries however.
Upvotes: 1