Click or drag to resize

IDao.FetchQueryAsync Method

Overload List
  NameDescription
Public methodFetchQueryAsync<T>(ITransaction, String, Object)
Async variant of FetchQuery<T> (ITransaction, String, Object) Executes the specified plain SQL query using this DAO and projects each row in the resultset to an instance of T. Every parameter value is converted into one or more parameters which have to be pre-defined in the sqlQuery. Uses default fetch aspects.
Public methodFetchQueryAsync<T>(ITransaction, CancellationToken, String, Object)
Async variant of FetchQuery<T> (ITransaction, String, Object) Executes the specified plain SQL query using this DAO and projects each row in the resultset to an instance of T. Every parameter value is converted into one or more parameters which have to be pre-defined in the sqlQuery. Uses default fetch aspects.
Public methodFetchQueryAsync<T>(PlainSQLFetchAspects, ITransaction, String, Object)
Async variant of FetchQuery<T> (PlainSQLFetchAspects, ITransaction, String, Object) Executes the specified plain SQL query using this DAO and projects each row in the resultset to an instance of T. Every parameter value is converted into one or more parameters which have to be pre-defined in the sqlQuery.
Public methodFetchQueryAsync<T>(PlainSQLFetchAspects, ITransaction, CancellationToken, String, Object)
Async variant of FetchQuery<T> (PlainSQLFetchAspects, ITransaction, String, Object) Executes the specified plain SQL query using this DAO and projects each row in the resultset to an instance of T. Every parameter value is converted into one or more parameters which have to be pre-defined in the sqlQuery.
Top
See Also