Options
All
  • Public
  • Public/Protected
  • All
Menu

Representation of a filter function, that returns a value of type boolean.

Type parameters

Hierarchy

Index

Constructors

  • Creates an instance of BooleanFilterFunction.

    Type parameters

    Parameters

    • functionName: string

      Name of the function that returns a boolean value

    • parameters: FilterFunctionParameterType<EntityT>[]

      Representation of the parameters passed to the filter function

    Returns BooleanFilterFunction<EntityT>

Properties

edmType: EdmTypeShared<ODataVersionOf<EntityT>>
functionName: string
parameters: FilterFunctionParameterType<EntityT>[]

Methods

  • equals(value: boolean): Filter<EntityT, boolean>
  • Creates an instance of Filter for this filter function and the given value using the operator 'eq', i.e. ==.

    Parameters

    • value: boolean

      Value to be used in the filter

    Returns Filter<EntityT, boolean>

    The resulting filter

  • notEquals(value: boolean): Filter<EntityT, boolean>
  • Creates an instance of Filter for this filter function and the given value using the operator 'ne', i.e. !=.

    Parameters

    • value: boolean

      Value to be used in the filter

    Returns Filter<EntityT, boolean>

    The resulting filter

  • toString(parentFieldNames?: string[]): string
  • deprecated

    Since v1.21.0. There will be no replacement. Let us know if you were using this functionality. Serializes the filter function into a string

    Parameters

    • Optional parentFieldNames: string[]

      Names of parents in case the function is part of a filter on a navigation property

    Returns string

    The filter function as string

    Copyright Ⓒ 2023 SAP SE or an SAP affiliate company. All rights reserved.