Class DeleteFrom<E extends EntityBean>

    • Constructor Detail

      • DeleteFrom

        public DeleteFrom​(Delete delete,
                          E entity)
        The constructor.
        Parameters:
        delete - the opening Delete.
        entity - the entity to operate on.
      • DeleteFrom

        public DeleteFrom​(Delete delete,
                          E entity,
                          String entityName)
        The constructor.
        Parameters:
        delete - the opening Delete.
        entity - the entity to operate on.
        entityName - the entity name.
    • Method Detail

      • where

        public DeleteWhere<E> where​(io.github.mmm.property.criteria.CriteriaPredicate predicate)
        Parameters:
        predicate - the CriteriaPredicate to add as Where-clause.
        Returns:
        the Where-Clause for fluent API calls.
      • where

        public DeleteWhere<E> where​(io.github.mmm.property.criteria.CriteriaPredicate... predicates)
        Parameters:
        predicates - the CriteriaPredicates to add as Where-clause. They will be combined with AND.
        Returns:
        the Where-Clause for fluent API calls.