0
我有一個視圖,而且對於視圖而不是表本身,我將更容易。在ATG中,我可以將itemdescriptor映射到視圖而不是表格嗎?有人能爲我提供一個例子嗎?可以將ItemDescriptor映射到一個視圖而不是表
TIA
我有一個視圖,而且對於視圖而不是表本身,我將更容易。在ATG中,我可以將itemdescriptor映射到視圖而不是表格嗎?有人能爲我提供一個例子嗎?可以將ItemDescriptor映射到一個視圖而不是表
TIA
是的,它可以。這實際上與設立正常的item-descriptor
沒有什麼不同。然而大多數意見是read-only
所以你需要確保你的item-descriptor
也是read-only
。這可以通過在item-descriptor
定義上設置writable="false"
屬性來實現。視圖的名稱只是成爲table
的名稱。
<item-descriptor name="ExampleItemDescriptor" cache-mode="simple" writable="false" query-expire-timeout="60000" item-cache-timeout="60000" item-cache-size="2000" query-cache-size="2000">
<table name="name_of_view" type="primary" id-column-names="multiple,columns">
<property name="aproperty" column-name="column" data-type="string" />
</table>
</item-descriptor>
感謝您的解釋。有效! – user3465554