Class CompositeSpecification<T>
Inheritance
object
CompositeSpecification<T>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.Specifications
Assembly: Volo.Abp.Specifications.dll
Syntax
public abstract class CompositeSpecification<T> : Specification<T>, ICompositeSpecification<T>, ISpecification<T>
Type Parameters
Name | Description |
---|---|
T |
Constructors
CompositeSpecification(ISpecification<T>, ISpecification<T>)
Declaration
protected CompositeSpecification(ISpecification<T> left, ISpecification<T> right)
Parameters
Type | Name | Description |
---|---|---|
ISpecification<T> | left | |
ISpecification<T> | right |
Properties
Left
Declaration
public ISpecification<T> Left { get; }
Property Value
Type | Description |
---|---|
ISpecification<T> |
Right
Declaration
public ISpecification<T> Right { get; }
Property Value
Type | Description |
---|---|
ISpecification<T> |