Module litebridge.orm
Class DtoDeleteWhereConditionClauseTerminalImpl<DTO>
java.lang.Object
org.litebridgedb.orm.api.dto.delete.DtoDeleteWhereConditionClauseTerminalImpl<DTO>
- All Implemented Interfaces:
DeleteQuery,DeleteTerminal,DeleteWhereConditionClauseTerminal<DTO,,DtoDeleteWhereConditionClause<DTO>, DtoDeleteWhereConditionClauseTerminal<DTO>> DtoDeleteWhereConditionClauseTerminal<DTO>,ConditionClauseTerminal<DTO,DtoDeleteWhereConditionClause<DTO>, DtoDeleteWhereConditionClauseTerminal<DTO>>
public final class DtoDeleteWhereConditionClauseTerminalImpl<DTO>
extends Object
implements DtoDeleteWhereConditionClauseTerminal<DTO>, DeleteTerminal
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAdds an "AND" condition to the current condition clause using the specified column.and(ExpressionSpec expression) Adds an "AND" condition to the current condition clause using the specified expression.execute()
-
Constructor Details
-
DtoDeleteWhereConditionClauseTerminalImpl
-
-
Method Details
-
and
Description copied from interface:ConditionClauseTerminalAdds an "AND" condition to the current condition clause using the specified column. This method is used to chain additional conditions in a SQL query in a fluent manner.- Specified by:
andin interfaceConditionClauseTerminal<DTO,DtoDeleteWhereConditionClause<DTO>, DtoDeleteWhereConditionClauseTerminal<DTO>> - Parameters:
field- the name of the column to be used in the "AND" condition- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-
and
Description copied from interface:ConditionClauseTerminalAdds an "AND" condition to the current condition clause using the specified expression. This method is used to chain additional conditions in a SQL query in a type-safe and fluent manner.- Specified by:
andin interfaceConditionClauseTerminal<DTO,DtoDeleteWhereConditionClause<DTO>, DtoDeleteWhereConditionClauseTerminal<DTO>> - Parameters:
expression- the expression to be used in the "AND" condition- Returns:
- the parent condition clause interface, allowing further chaining of conditions
-
execute
- Specified by:
executein interfaceDeleteTerminal
-