Method GetOnlyWhereIQueryable
GetOnlyWhereIQueryable(IQueryable<T>, QueryParameter<T>)
Gets the IQueryable with only the "where" clause applied from the query parameters.
public IQueryable<T> GetOnlyWhereIQueryable(IQueryable<T> dbset, QueryParameter<T> queryParameter = null)
Parameters
dbset
IQueryable<T>The original IQueryable.
queryParameter
QueryParameter<T>The query parameters to apply.
Returns
- IQueryable<T>
The IQueryable with only the "where" clause applied.