| AccessQueryAnd Class | 
 Inheritance Hierarchy
Inheritance HierarchyNamespace: AGI.Foundation.Access
 Syntax
SyntaxThe AccessQueryAnd type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | AccessQueryAnd | Initializes a new instance. | 
|  | AccessQueryAnd(AccessQuery) | 
            Initializes a new instance representing the logical AND of any number of sub-queries.
             | 
|  | AccessQueryAnd(IEnumerableAccessQuery) | 
            Initializes a new instance representing the logical AND of any number of sub-queries.
             | 
|  | AccessQueryAnd(AccessQuery, AccessQuery) | 
            Initializes a new instance representing the logical AND of two sub-queries.
             | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | DebuggingLogger | 
            Gets or sets a logger to which debugging information will be written.
            (Inherited from AccessQuery.) | 
|  | IsFrozen | 
            Gets a value indicating whether this object is frozen.  A frozen object cannot be modified and an
            ObjectFrozenException will be thrown if an attempt is made to do so.
            (Inherited from DefinitionalObject.) | 
|  | Queries | 
            Gets the collection of sub-queries.
             | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Clone | 
            Clones this object using the specified context.
            (Overrides DefinitionalObjectClone(CopyContext).) | 
|  | EnumerateDependencies | 
        Enumerates the dependencies of this object by calling
        EnumerateT(T) for each object that this object directly depends upon.
        Derived classes which contain additional dependencies MUST override this method, call the base
        implementation, and enumerate dependencies introduced by the derived class.
      (Overrides DefinitionalObjectEnumerateDependencies(DependencyEnumerator).) | 
|  | Equals | Determines whether the specified object is equal to the current object.(Inherited from Object.) | 
|  | Freeze | 
            Freezes this object.  Further attempts to modify it will result
            in an ObjectFrozenException.
            (Inherited from DefinitionalObject.) | 
|  | GetDefinitionHashCode | 
            Gets a hash code representing the definition of this object.
            (Inherited from DefinitionalObject.) | 
|  | GetEvaluationOrder | 
            Gets the suggested evaluation order of this query, which is a function of the
            evaluation orders of the queries in this query's Queries collection.
            The evaluation order is computed by sorting the sub-queries by
            their evaluation orders (lowest first).
            Then starting with the first sub-query's evaluation order, it adds half of the subsequent sub-query's
            evaluation order to it. Next it will add a quarter of the following sub-query's
            evaluation order, and so on. Each time it adds a fraction of each subsequent sub-query's
            evaluation order. This fraction starts as one half and is raised to a power dependent upon
            the order of the sub-query in the sorted array of queries
            (e.g. ½^0 for the first, ½^1 for the second, and ½^2 for the third).
            (Overrides AccessQueryGetEvaluationOrder.) | 
|  | GetEvaluator | 
            Gets an evaluator that can be used to evaluate this query for a given time or for intervals of time.
            (Inherited from AccessQuery.) | 
|  | GetEvaluator(IServiceProvider) | 
            Gets an evaluator that can be used to evaluate this query for a given time or for intervals of time.
            (Inherited from AccessQuery.) | 
|  | GetEvaluator(IServiceProvider, EvaluatorGroup) | 
            Gets an evaluator that can be used to evaluate this query for a given time or for intervals of time.
            (Overrides AccessQueryGetEvaluator(IServiceProvider, EvaluatorGroup).) | 
|  | GetHashCode | Serves as the default hash function. (Inherited from Object.) | 
|  | GetType | Gets the Type of the current instance.(Inherited from Object.) | 
|  | IsSameDefinition | 
        Determines if this object has the same definition as another object.
      (Inherited from DefinitionalObject.) | 
|  | ToDisjunctiveNormalForm | 
            Transforms this query to disjunctive normal form (DNF).
            (Overrides AccessQueryToDisjunctiveNormalForm.) | 
|  | ToString | 
            Returns a string which represents the current object.
            (Overrides ObjectToString.) | 
 See Also
See Also