Query Function
Represents a OData query function. Query functions are typically used within {@link com.sap.cloud.mobile.kotlin.odata.DataQuery#filter(com.sap.cloud.mobile.kotlin.odata.QueryFilter) DataQuery.filter}. {@link com.sap.cloud.mobile.kotlin.odata.QueryFunctionCall} can be constructed using static calls on {@link com.sap.cloud.mobile.kotlin.odata.QueryFunction} or, more conveniently, by chained calls on {@link com.sap.cloud.mobile.kotlin.odata.QueryValue}.//! @example example.NorthwindProxyClient.queryFunctionExample
- Example using proxy classes (with QueryValue chained calls):
open fun queryValueFunctionExample(): kotlin.Unit { val service = this.service; val query = DataQuery().filter(Customer.address.toLower().contains("king")); val customers = service.getCustomers(query); this.showCustomers(customers); }