Type of the entity the field belongs to.
Type of the (de-)serializers.
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 '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.
Represents a property of an OData entity with an EDM type.
EdmTypeField
s are used as static properties of entities or EDM typed fields of complex type fields. They are generated from the OData metadata, i.e. for each property of an OData entity, that has an EDM type, there is one static instance ofEdmTypeField
(or rather one of its subclasses) in the corresponding generated class file.EdmTypeField
s are used to represent the domain of more or less primitive values that can be used in select, filter and order by functions. For example, when constructing a query on the BusinessPartner entity, an instance ofEdmTypeField<BusinessPartner, string>
can be supplied as argument to the select function, e.g.BusinessPartner.FIRST_NAME
.See also: Selectable.