0
我有tgi實體:銷售訂單和與產品相關的n:n。我必須從報告中提取與當前銷售訂單相關的所有產品。 當我試試這個:如何從報表服務獲取n:n關係
<fetch distinct="false" no-lock="false" mapping="logical" >
<entity name="salesorder" enableprefiltering="1">
<link-entity name="new_product_salesorder" from="salesorderid" to="salesorderid">
<attribute name='productid'/>
<link-entity name="product" from="productid" to="productid">
<attribute name="name" alias="product_name"/>
<attribute name="stockvolume" alias="product_amount"/>
<attribute name="price" alias="product_price"/>
<attribute name="currentcost" alias="product_cost"/>
</link-entity>
</link-entity>
</entity>
</fetch>
沒有錯誤,dut數據沒有得到。 有沒有人問題?