Interface IQueryModifier<T>
Represents an interface for modifying queries on a specific entity type.
public interface IQueryModifier<T> where T : class
Type Parameters
T
The type of the entity.
Methods
- GetIQueryable(IQueryable<T>, QueryParameter<T>)
Modifies the queryable object by applying additional query parameters.
- GetOnlyWhereIQueryable(IQueryable<T>, QueryParameter<T>)
Modifies the queryable object by applying additional query parameters, but only includes the "where" clause.