Click or drag to resize

DataAccessAdapterCore.FetchScalarQueryAsync Method

Overload List
  NameDescription
Public methodFetchScalarQueryAsync<T>(String, Object)
Async variant of FetchScalarQuery<T>(String, Object).` Executes the specified plain SQL query using this adapter and returns the first scalar value returned as 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 methodFetchScalarQueryAsync<T>(CancellationToken, String, Object)
Async variant of FetchScalarQuery<T>(String, Object). Executes the specified plain SQL query using this adapter and returns the first scalar value returned as 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 methodFetchScalarQueryAsync<T>(PlainSQLFetchAspects, String, Object)
Async variant of FetchScalarQuery<T>(PlainSQLFetchAspects, String, Object). Executes the specified plain SQL query using this adapter and returns the first scalar value returned as an instance of T. Every parameter value is converted into one or more parameters which have to be pre-defined in the sqlQuery.
Public methodFetchScalarQueryAsync<T>(CancellationToken, PlainSQLFetchAspects, String, Object)
Async variant of FetchScalarQuery<T>(PlainSQLFetchAspects, String, Object). Executes the specified plain SQL query using this adapter and returns the first scalar value returned as 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