IMobileServiceSyncTable<T>.ReadAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ReadAsync() |
Returns instances from a table. |
ReadAsync<U>(IMobileServiceTableQuery<U>) |
Returns instances from a table based on a query. |
ReadAsync()
Returns instances from a table.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<T>> ReadAsync ();
abstract member ReadAsync : unit -> System.Threading.Tasks.Task<seq<'T>>
Public Function ReadAsync () As Task(Of IEnumerable(Of T))
Returns
Task<IEnumerable<T>>
Instances from the table.
Remarks
This call will not handle paging, etc., for you.
Applies to
ReadAsync<U>(IMobileServiceTableQuery<U>)
Returns instances from a table based on a query.
public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<U>> ReadAsync<U> (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<U> query);
abstract member ReadAsync : Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'U> -> System.Threading.Tasks.Task<seq<'U>>
Public Function ReadAsync(Of U) (query As IMobileServiceTableQuery(Of U)) As Task(Of IEnumerable(Of U))
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.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET