public interface ISpecification<in T>
Func<T, bool> Predicate { get; }
bool IsSatisfiedBy(T entity);
public class Specification<T> : ISpecification<T>
public Specification(Func<T, bool> predicate)
this.Predicate = predicate;
public Func<T, bool> Predicate
public bool IsSatisfiedBy(T x)
return Predicate.Invoke(x);
public static Specification<T> operator &(Specification<T> left, ISpecification<T> right)
return new Specification<T>((x) => left.Predicate(x) && right.Predicate(x));
public static Specification<T> operator &(ISpecification<T> left, Specification<T> right)
return new Specification<T>((x) => left.Predicate(x) && right.Predicate(x));
public static void Main()
new Specification<Base>((x) => true) & new Specification<Base>((x) => true);