How do I define multiple conditions on a join JPA/Ebean

≯℡__Kan透↙ 提交于 2019-12-11 12:18:07

问题


Ok, lets say I have order and items tables. This is how items are described in my Order class:

@ManyToMany(cascade=CascadeType.PERSIST)
@JoinTable(name="MY_ORDER_ITEM_BRIDGE",
joinColumns=@JoinColumn(name="bridge_order_id",referencedColumnName = "order_order_id"),
inverseJoinColumns = @JoinColumn(name="bridge_item_id", referencedColumnName="item_item_id"))
private List<Item> items;

This works fine. But lets image that there is a date in the bridge table called MY_ORDER_ITEM_BRIDGE.expiration_date.

I want to change the definition to only include Items with expiration_date that has not occurred yet.

So I want the generated SQL to look something like:

SELECT *
FROM order o
join my_order_item_bridge b
on b.bridge_order_id = o.order_order_id
join item i
on i.item_item_id = b.bridge_item_id
where b.expiration_date < sysdate;

I am using Ebean, Play Framework 2.1.3. Thanks for any help.

UPDATE: Alternatively, it could also be a second condition on either of the joins:

SELECT *
FROM order o
join my_order_item_bridge b
on b.bridge_order_id = o.order_order_id
and b.expiration_date < sysdate
join item i
on i.item_item_id = b.bridge_item_id

(If possible I'd like to do this in the class definition not in raw SQL)


回答1:


The problem is that ebean-generated bridge table can have two and only two columns: two foreign keys.

If you want to have another field there you should model the whole set as three entities: Order.java, Item.java and OrderItem.java.

To enforce integrity you can use constraints in OrderItem class:

@Table(uniqueConstraints=@UniqueConstraint(columnNames={"order_order_id", "item_item_id"}))



回答2:


You can use SQL directly in ebean. See http://www.avaje.org/static/javadoc/pub/com/avaje/ebean/RawSql.html



来源:https://stackoverflow.com/questions/20485075/how-do-i-define-multiple-conditions-on-a-join-jpa-ebean

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!