Type of the entity the field belongs to
EDM type of the field. Deprecated: Field 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.
Optional settings for this field.
Creates 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
Path to the field to be used in filter and order by queries.
Path to the field to be used in filter and order by queries.
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 Ⓒ 2023 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