Type of the entity the field belongs to.
EDM type of the field.
Boolean type that represents whether the field is nullable.
Boolean type that represents whether the field is selectable.
Creates an instance of EdmTypeField.
Actual name of the field used in the OData request.
Constructor type of the entity the field belongs to.
Type of the field according to the metadata description.
(De-)serializers used for transformation.
Optional
fieldOptions: FieldOptions<NullableT, SelectableT>Optional settings for this field.
Dummy property to also include the deserializer type in the structure of the entity type.
Readonly
_entityDummy property whose type makes structurally identical entities distinguishable in TypeScript.
Readonly
_entityReadonly
_fieldReadonly
_fieldReadonly
_fieldReadonly
edmCreates an instance of Filter for this field and the given value using the operator 'eq', i.e. ==
.
Value to be used in the filter.
The resulting filter.
Creates an instance of Filter for this field and the given value using the operator 'ge', i.e. >=
.
Value to be used in the filter.
The resulting filter.
Creates an instance of Filter for this field and the given value using the operator 'gt', i.e. >
.
Value to be used in the filter.
The resulting filter.
Creates an instance of Filter for this field and the given value using the operator 'le', i.e. <=
.
Value to be used in the filter.
The resulting filter.
Creates an instance of Filter for this field and the given value using the operator 'lt', i.e. <
.
Value to be used in the filter.
The resulting filter.
Creates an instance of Filter for this field and the given value using the operator 'ne', i.e. !=
.
Value to be used in the filter.
The resulting filter.
Copyright Ⓒ 2024 SAP SE or an SAP affiliate company. All rights reserved.
EdmTypeField, that represents a property with an EDM type, that can be compared with
greaterThan
,greaterOrEqual
,lessThan
andlessOrEqual
.