IQueryModelResult InterfaceNReco.Data Class Library Documentation
Represents query result that can be mapped to POCO model.

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

public interface IQueryModelResult

The IQueryModelResult type exposes the following members.

Methods

  NameDescription
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 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.
Top
See Also