TransformValue
open class TransformValue : QueryValue
Encapsulates an OData transformation item defined in OData Data Aggregation. A TransformValue indicates an expression that is used in the $apply system query option.
-
Child transform items to be executed after the current transform value is executed.
Declaration
Swift
final public var items: TransformValueList -
Default initializer.
Declaration
Swift
override public init() -
Adds a new transformation item to be executed after the current one. It will be separated by a ‘/’ in the query url.
Declaration
Swift
open func chain(_ item: TransformValue) -> TransformValueParameters
itemThe transform value to be executed after the current one.
Return Value
The current transform value.