Syntax
| C# |
|---|
public abstract class ActiveRecordBaseQuery |
The type exposes the following members.
Protected Constructors
| Name | Description | |
|---|---|---|
| ActiveRecordBaseQueryActiveRecordBaseQueryNew |
Initializes a new instance of the ActiveRecordBaseQuery class.
|
Public Methods
| Name | Description | |
|---|---|---|
| Clone |
Just a default clone implementation...
| |
| Equals | (Inherited from Object.) | |
| GetHashCode | 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.) | |
| GetModifiers |
Gets the internal list of modifiers used by the specified query.
NOT INTENTED FOR NORMAL USE.
| |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| ToString | (Inherited from Object.) |
Protected Methods
| Name | Description | |
|---|---|---|
| AddModifier |
Adds a query modifier, to be applied with ApplyModifiers(IQuery).
| |
| ApplyModifiers |
Applies the modifiers added with AddModifier(IQueryModifier).
| |
| CreateQuery |
Creates the IQuery instance.
| |
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
| GetResultsArray | Overloaded. | |
| InternalEnumerate |
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
| |
| InternalExecute |
Simply creates the query and then call its List()() method.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
Protected Fields
| Name | Description | |
|---|---|---|
| queryModifiers |
list of modifiers for the query
|
Public Properties
| Name | Description | |
|---|---|---|
| Log |
Use the specified logger to output diagnostic messages.
| |
| RootType |
Gets the target type of this query
|
See Also
Castle.ActiveRecord Namespace