RemoveOperation.single

Deletes the passed-in value by limiting the delete operation to the primary key of this instance.

  1. bool single(T value)
  2. bool single(P patch)
    struct RemoveOperation(T : Model)
    @safe scope @safe
    bool
    single
    (
    P
    )
    ()
    if (
    !is(P == T) &&
    isSomePatch!P
    )

Return Value

Type: bool

true if anything was deleted, false otherwise.

Meta