Syntax

C#
public abstract class ActiveRecordBaseQuery

The type exposes the following members.

Protected Constructors

  NameDescription
Protected methodActiveRecordBaseQueryActiveRecordBaseQueryNew
Initializes a new instance of the ActiveRecordBaseQuery class.

Public Methods

  NameDescription
Public methodClone
Just a default clone implementation...
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type. GetHashCode()() is suitable for use in hashing algorithms and data structures like a hash table.
(Inherited from Object.)
Public methodStatic memberGetModifiers
Gets the internal list of modifiers used by the specified query. NOT INTENTED FOR NORMAL USE.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)

Protected Methods

  NameDescription
Protected methodAddModifier
Adds a query modifier, to be applied with ApplyModifiers(IQuery).
Protected methodApplyModifiers
Applies the modifiers added with AddModifier(IQueryModifier).
Protected methodCreateQuery
Creates the IQuery instance.
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodGetResultsArrayOverloaded.
Protected methodInternalEnumerate
Simply creates the query and then call its Enumerable()() method. Note: Only use when you expect most of the results to be in the second level cache
Protected methodInternalExecute
Simply creates the query and then call its List()() method.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)

Protected Fields

  NameDescription
Protected fieldqueryModifiers
list of modifiers for the query

Public Properties

  NameDescription
Public propertyLog
Use the specified logger to output diagnostic messages.
Public propertyRootType
Gets the target type of this query

See Also