I'm trying to form the code that represents the query with left join on a filtered table. Like this:
select * from tableA left join (select * from tableB where name='needed') as tableTemp on tableA.key = tableTemp.key where ...
Is it possible to convert to LLBLGen code or rewrite to query to achive the desired result? One thing i can think of is to run two separate queries and to perform the left join in my own code, but that's not the most desirable solution for me.
Thanks in advance.