Type of the entity the field belongs to
Type of the field
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
Type of the field according to the metadata description
Constructor type of the entity the field belongs to
Actual name of the field used in the OData request
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. 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.
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
Represents a property of an OData entity with an Edm type.
EdmTypeField
s are used as static properties of VDM entities and are generated from the metadata, i.e. for each property of an OData entity, that has an Edm type, there exists 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