我有這個SQL查詢,這在LINQ中是不可能的。LINQ的複雜SQL子查詢
select * from attribute_value t0
where t0.attribute_value_id in
(
select t1.attribute_value_id from product_attribute_value t1
where t1.product_attribute_id in
(
select t2.product_attribute_id from product_attribute t2
where t2.product_id in
(
select product_id from product p, manufacturer m
where p.manufacturer_id = m.manufacturer_id
and m.name = 'manufacturer name'
)
and pa.attribute_id = 1207
)
)
where子句也必須稍後在代碼中動態完成。
我不知道他是否爲他工作,但感謝分享,很酷的軟件! – 2010-09-16 19:52:10
我很感興趣的是在該場景下看到該工具爲OP提供了什麼。 – eglasius 2010-09-17 00:18:58