Skip to content

TQueryGet_T__ToListAsync()

Jacob Spitzer edited this page Aug 28, 2022 · 2 revisions

TQueryGet<T>.ToListAsync() Method

Execute a query asynchronously using Task, returning an List object with the data typed as T.

public System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<T>> ToListAsync();

Returns

System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<T>>
A sequence of data of the supplied table type; an instance is created per row, and a direct column-name===member-name mapping is assumed (case insensitive).

Clone this wiki locally