views:

88

answers:

2

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
+1  A: 

Not at this time - however you can run IN queries with a SELECT - not subqueries however.

Rob Conery
A: 

You would need to use the inlineQuery class where you generate the sql yourself to accomplish what you are going after

runxc1 Bret Ferrier