Browse
interface
ISpecification<T>
publicnamespace Core.Data.Repositories;
public interface ISpecification<in T>Encapsulates query criteria for T.
TโThe queried entity type.
Methods
#
bool IsSatisfiedBy(T entity)Determines whether the entity satisfies the specification.
entityโThe entity to evaluate.
returnsโtrue when the entity matches; otherwise false.