DbDataAdapter SelectQuery ClassNReco.Data Class Library Documentation
Represents select query (returned by Select(Query) method).
Inheritance Hierarchy

System Object
  NReco.Data DbDataAdapter SelectQuery

Namespace: NReco.Data
Assembly: NReco.Data (in NReco.Data.dll) Version: 1.0.2
Syntax

public abstract class SelectQuery : IQueryModelResult, 
	IQueryDictionaryResult, IQueryRecordSetResult

The DbDataAdapter SelectQuery type exposes the following members.

Methods

  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodExecuteReader T 
Executes data reader and returns custom handler result.
Public methodExecuteReaderAsync T 
Asynchronously executes data reader and returns custom handler result.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSetMapper
Configures custom mapping handler for POCO models.
Public methodSingle T 
Returns the first record from the query result.
Public methodSingleAsync T  
Asynchronously returns the first record from the query result.
Public methodSingleAsync T (CancellationToken)
Asynchronously returns the first record from the query result.
Public methodToDictionary
Returns dictionary with first record values.
Public methodToDictionaryAsync 
Asynchronously returns dictionary with first record values.
Public methodToDictionaryAsync(CancellationToken)
Asynchronously returns dictionary with first record values.
Public methodToDictionaryList
Returns a list of dictionaries with all query results.
Public methodToDictionaryListAsync 
Asynchronously a list of dictionaries with all query results.
Public methodToDictionaryListAsync(CancellationToken)
Asynchronously a list of dictionaries with all query results.
Public methodToList T 
Returns a list with all query results.
Public methodToListAsync T  
Asynchronously returns a list with all query results.
Public methodToListAsync T (CancellationToken)
Asynchronously returns a list with all query results.
Public methodToRecordSet
Returns all query results as RecordSet.
Public methodToRecordSetAsync 
Asynchronously returns all query results as RecordSet.
Public methodToRecordSetAsync(CancellationToken)
Asynchronously returns all query results as RecordSet.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields

  NameDescription
Protected fieldAdapter
Top
See Also