Click or drag to resize

DataAccessObjectQueryTObject Class

Represents query, which reads its data from data access layer
Inheritance Hierarchy
SystemObject
  Aloe.SystemFrameworks.Domain.LINQObjectQueryTObject
    Aloe.SystemFrameworks.Domain.LINQDataAccessObjectQueryTObject

Namespace:  Aloe.SystemFrameworks.Domain.LINQ
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public class DataAccessObjectQuery<TObject> : ObjectQuery<TObject>
where TObject : DomainObject

Type Parameters

TObject
The type of the object.

The DataAccessObjectQueryTObject type exposes the following members.

Constructors
  NameDescription
Public methodDataAccessObjectQueryTObject
Initializes a new instance of the DataAccessObjectQueryTObject class.
Top
Properties
  NameDescription
Public propertyDataAccessQuery
Translates the query and returns a DataAccessQuery
Public propertyElementType
Gets the type of the element(s) that are returned when the expression tree associated with this instance of IQueryable is executed.
(Inherited from ObjectQueryTObject.)
Public propertyExpression
Gets the expression tree that is associated with the instance of IQueryable.
(Inherited from ObjectQueryTObject.)
Public propertyProvider
Gets the query provider that is associated with this data source.
(Inherited from ObjectQueryTObject.)
Public propertyRepository
The repository, which is queried by this query
(Inherited from ObjectQueryTObject.)
Public propertyTransaction
The transaction to which this query is bound
(Inherited from ObjectQueryTObject.)
Top
Methods
  NameDescription
Public methodCreateQueryTElement (Overrides ObjectQueryTObjectCreateQueryTElement(Expression).)
Public methodExecuteTResult(Expression)
Executes the specified expression.
(Inherited from ObjectQueryTObject.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from ObjectQueryTObject.)
Public methodReadCount
Executes the query and returns the result records count.
(Overrides ObjectQueryTObjectReadCount.)
Public methodReadToBuffer
Executes the query and returns the result in a buffer
(Overrides ObjectQueryTObjectReadToBuffer(NullableInt32).)
Public methodToString
Returns a String that represents this instance.
(Overrides ObjectToString.)
Top
See Also