public interface WelcomeToDreamCruise
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
mysticRhythms(Object mysticBinding)
DBFlute Dreams.
|
void |
overTheWaves(SpecifiedColumn dreamCruiseTicket)
DBFlute Dreams.
|
void overTheWaves(SpecifiedColumn dreamCruiseTicket)
e.g. member that purchases products only purchased by the member
cb.query().existsPurchaseList(purchaseCB -> {
purchaseCB.query().queryProduct().notExistsPurchaseList(productPurchaseCB -> {
productPurchaseCB.columnQuery(colCB -> {
colCB.specify().columnMemberId();
}).notEqual(colCB -> {
colCB.overTheWaves(cb.dreamCruiseCB().specify().columnMemberId());
});
});
});
dreamCruiseTicket - The ticket column specified by your Dream Cruise. (NotNull)void mysticRhythms(Object mysticBinding)
e.g. ColumnQuery: ... > '2015/04/05' + (PURCHASE_COUNT days)
cb.columnQuery(colCB -> {
colCB.column...();
}).greaterThan(colCB -> {
colCB.mysticRhythms(toDate("2015/04/05"));
}).convert(op -> op.addDay(cb.dreamCruiseCB().specify().columnPurchaseCount());
mysticBinding - The mystic value of the column e.g. to compare with other column. (NotNull)Copyright © 2014–2015 The DBFlute Project. All rights reserved.