use of org.dbflute.cbean.coption.ConditionOption in project dbflute-core by dbflute.
the class AbstractConditionQuery method setupConditionValueAndRegisterWhereClause.
// ===================================================================================
// Where Clause
// ============
protected void setupConditionValueAndRegisterWhereClause(ConditionKey key, Object value, ConditionValue cvalue, String columnDbName) {
final ConditionOption embeddedOption = createEmbeddedOption(key, value, cvalue, columnDbName);
setupConditionValueAndRegisterWhereClause(key, value, cvalue, columnDbName, embeddedOption);
}
Aggregations