Show / Hide Table of Contents

Interface ICompositeSpecification<T>

Represents that the implemented classes are composite specifications.

Inherited Members
ISpecification<T>.IsSatisfiedBy(T)
ISpecification<T>.ToExpression()
Namespace: Volo.Abp.Specifications
Assembly: Volo.Abp.Specifications.dll
Syntax
public interface ICompositeSpecification<T> : ISpecification<T>
Type Parameters
Name Description
T

The type of the object to which the specification is applied.

Properties

Left

Gets the left side of the specification.

Declaration
ISpecification<T> Left { get; }
Property Value
Type Description
ISpecification<T>

Right

Gets the right side of the specification.

Declaration
ISpecification<T> Right { get; }
Property Value
Type Description
ISpecification<T>

Extension Methods

SpecificationExtensions.And<T>(ISpecification<T>, ISpecification<T>)
SpecificationExtensions.Or<T>(ISpecification<T>, ISpecification<T>)
SpecificationExtensions.AndNot<T>(ISpecification<T>, ISpecification<T>)
SpecificationExtensions.Not<T>(ISpecification<T>)
AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft