Skip to content

Instantly share code, notes, and snippets.

@GuyCui
Last active September 17, 2020 00:54
Show Gist options
  • Save GuyCui/655d64be40ee97066b490a2aaed6be01 to your computer and use it in GitHub Desktop.
Save GuyCui/655d64be40ee97066b490a2aaed6be01 to your computer and use it in GitHub Desktop.
JPA 查询数据库|-|{"files":{"JPA 代码片段.java":{"env":"plain","abbr":""}},"tag":"Java"}
private final JPAQueryFactory jpaQueryFactory;
QProductOrderItem qProductOrderItem = QProductOrderItem.productOrderItem;
jpaQueryFactory.select(qProductOrderItem.perPrice).from(qProductOrderItem).where(qProductOrderItem.id.eq(wld.getProductOrderItemId())).fetchFiCODEEXPANDER_CLIPBOARD
private final JPAQueryFactory jpaQueryFactory;
QProductOrderItem qProductOrderItem = QProductOrderItem.productOrderItem;
jpaQueryFactory.select(qProductOrderItem.perPrice).from(qProductOrderItem).where(qProductOrderItem.id.eq(wld.getProductOrderItemId())).fetchFirst();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment