hibernate 主表關聯子表,子表排序的寫法

原來 hibernate 是支持 主表關聯查詢全部子表,而後子表排序的方式的app

`fetch

@OneToMany(mappedBy = "order",fetch=FetchType.LAZY)

@OrderBy("modelNo asc,texture asc,thickness asc,width asc")

private List<ProcessOrderItem> items = new ArrayList<ProcessOrderItem>();

` 這樣經過 order 訂單獲取的訂單明細就已經排好序了,是挺強大的hibernate

相關文章
相關標籤/搜索