IMobileServiceTable<T>.ReadAsync
Method
Definition
Overloads
| ReadAsync() |
Returns instances from a table. |
| ReadAsync<U>(IMobileServiceTableQuery<U>) |
Returns instances from a table using a query. |
| ReadAsync<U>(String) |
Executes a query against the table. |
ReadAsync()
Returns instances from a table.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<T>> ReadAsync ();
Returns
Task<IEnumerable<T>>
Instances from the table.
Remarks
This call will not handle paging, etc., for you.
ReadAsync<U>(IMobileServiceTableQuery<U>)
Returns instances from a table using a query.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<U>> ReadAsync<U> (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<U> query);
Type Parameters
- U
The type of instance returned by the query.
Parameters
- query
- IMobileServiceTableQuery<U>
The query to execute.
Returns
Task<IEnumerable<U>>
Instances from the table.
ReadAsync<U>(String)
Executes a query against the table.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<U>> ReadAsync<U> (string query);
Type Parameters
- U
Parameters
- query
- String
A query to execute.
Returns
Task<IEnumerable<U>>
A task that will return with results when the query finishes.