如何使用CF ORM執行以下操作?CF ORM - 使用IN子句的EntityLoad filterCriteria
SELECT * FROM products WHERE id in ('3,7,12,5');
我試圖
EntityLoad("products", { id in ('#productIDlist#') });
,但沒有喜悅..收到錯誤:Invalid construct: Either argument or name is missing. When using named parameters to a function, each parameter must have a name.
。我敢肯定這是直截了當的,但我不能工作了如何做到這一點,並找不到任何樣本或文檔。
很多預先感謝。
謝謝薩姆..做到了! – Jason 2012-03-16 01:44:14
@SamFarmer它如何看起來參數化? ormExecuteQuery(「FROM products WHERE id IN(':list_here')」,{list_here = productIDlist}); ?我正在嘗試類似的東西,但我不斷收到錯誤。 – TekiusFanatikus 2015-05-14 11:34:32