wire.data.TableQuery
The TableQuery
class is used to create queries. Use the wire.data.select
method to create TableQuery
instances.
The following makes a call to a custom web service method GetUsers
and returns the results into the data
variable.
TableQuery
has many methods which allow a target data source to be queried. Check the target service provider documentation for details including support for TableQuery
.
The full list of wire.data.select
methods available is listed below.
The following example selects the list of active users directly from a SQL database using the WireBootstrap Query Service.
For more TableQuery
examples, visit Creating Queries - Select Queries.
Last updated