Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StringFilterFunction<EntityT>

Representation of a filter function, that has returns a value of type string.

Type parameters

Hierarchy

Index

Constructors

constructor

  • Creates an instance of StringFilterFunction.

    Parameters

    • functionName: string

      Name of the function that returns a string value

    • parameters: Array<FilterFunctionParameterType<EntityT>>

      Representation of the parameters passed to the filter function

    Returns StringFilterFunction

Properties

edmType

edmType: EdmType

EdmType of the return type of the filter function.

functionName

functionName: string

Name of the function

parameters

parameters: Array<FilterFunctionParameterType<EntityT>>

Representation of the parameters passed to the filter function

Methods

equals

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

    Parameters

    • value: string

      Value to be used in the filter

    Returns Filter<EntityT, string>

    The resulting filter

notEquals

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

    Parameters

    • value: string

      Value to be used in the filter

    Returns Filter<EntityT, string>

    The resulting filter

toString

  • toString(parentFieldNames?: string[]): string
  • Serializes the filter function into a string

    Parameters

    • Default value 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