Click or drag to resize

DataAccessQuery Class

Basic query, that can be processed by the data access layer
Inheritance Hierarchy
SystemObject
  Aloe.SystemFrameworks.Domain.DataAccessDataAccessQuery

Namespace:  Aloe.SystemFrameworks.Domain.DataAccess
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public class DataAccessQuery

The DataAccessQuery type exposes the following members.

Constructors
  NameDescription
Public methodDataAccessQuery
Initializes a new instance of the DataAccessQuery class.
Top
Properties
  NameDescription
Public propertyMaxRows
The maximum number of rows to retrieve. 0 means to retrieve all rows, matching the filter
Public propertyQueryName
The name of the query which to execute
Public propertyStartingRow
The row number from which to start retrieving rows
Public propertyWhere
List of search arguments, used to filter the query
Top
Methods
Remarks
The DataAccessQuery is usually a read-only query, returning one table. Although not suggested, it can have side effects on the server. Also, although it is a bit obscure, it is possible to return multiple table result set.
See Also