Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BinaryField<EntityT>

Represents a selectable property with a binary value.

Type parameters

  • EntityT: Entity

    Type of the entity the field belongs to

Hierarchy

Implements

Index

Constructors

constructor

  • new BinaryField(fieldName: string, entityConstructor: Constructable<EntityT>, edmType: EdmType): BinaryField
  • Creates an instance of EdmTypeField.

    Parameters

    • fieldName: string

      Actual name of the field used in the OData request

    • entityConstructor: Constructable<EntityT>

      Constructor type of the entity the field belongs to

    • edmType: EdmType

      Type of the field according to the metadata description

    Returns BinaryField

Properties

edmType

edmType: EdmType

Type of the field according to the metadata description

entityConstructor

entityConstructor: Constructable<EntityT>

Constructor type of the entity the field belongs to

fieldName

fieldName: string

Actual name of the field used in the OData request

selectable

selectable: true

Methods

equals

  • equals(value: string): Filter<EntityT, string>
  • Creates an instance of Filter for this field 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

fieldPath

  • fieldPath(): string
  • Path to the field to be used in filter and order by queries. In most cases this will just be the fieldName itself. However, for complex types for instance, the path is prefixed with the name of the complextype.

    Returns string

    Path to the field to be used in filter and order by queries.

notEquals

  • notEquals(value: string): Filter<EntityT, string>
  • Creates an instance of Filter for this field 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