Click or drag to resize

DataAccessAdapterBase.FetchQueryAsync Method

Overload List
  NameDescription
Public methodFetchQueryAsync<T>(String, Object)
Async variant of FetchQuery<T> (String, Object) Executes the specified plain SQL query using this adapter 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.
(Inherited from DataAccessAdapterCore.)
Public methodFetchQueryAsync<T>(CancellationToken, String, Object)
Async variant of FetchQuery<T> (String, Object) Executes the specified plain SQL query using this adapter 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.
(Inherited from DataAccessAdapterCore.)
Public methodFetchQueryAsync<T>(PlainSQLFetchAspects, String, Object)
Async variant of FetchQuery<T> (PlainSQLFetchAspects, String, Object) Executes the specified plain SQL query using this adapter 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.
(Inherited from DataAccessAdapterCore.)
Public methodFetchQueryAsync<T>(CancellationToken, PlainSQLFetchAspects, String, Object)
Async variant of FetchQuery<T> (PlainSQLFetchAspects, String, Object) Executes the specified plain SQL query using this adapter 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.
(Overrides DataAccessAdapterCore.FetchQueryAsync<T>(CancellationToken, PlainSQLFetchAspects, String, Object).)
Top
See Also