Type of the entity the field belongs to
Creates an instance of ComplexTypeField.
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
Constructor type of the entity the field belongs to
Actual name of the field used in the OData request
Type of the field according to the metadata description
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.
Represents a property of an OData entity with a complex type.
ComplexTypeField
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 a complex type, there exists one static instance ofComplexTypeField
(or rather one of its subclasses) in the corresponding generated class file.ComplexTypeField
s are used to represent the domain of complex or custom structures that can be used in select, filter and order by functions. For example, when constructing a query on the TimeSheetEntry entity, an instance ofComplexTypeField<TimeSheetEntry>
can be supplied as argument to the select function, e.g.TimeSheetEntry.TIME_SHEET_DATA_FIELDS
. Moreover, classes implementing this abstract class will provide property fields, that can be used for filtering and ordering.See also: Selectable