Class ObjectQueryExtensions
Provides methods for SQL operations while filtering data.
public static class ObjectQueryExtensions
- Inheritance
-
objectObjectQueryExtensions
Methods
OrderByStartingPriority(ObjectQuery, IEnumerable<string>, string)
Returns a query with its items ordered by whether the values contain a searched for term. Prioritizes items that start with the term over those that only contain it.
public static void OrderByStartingPriority(this ObjectQuery query, IEnumerable<string> searchableColumns, string searchTerm)
Parameters
query
ObjectQueryThe query object to perform the OrderBy on.
searchableColumns
IEnumerable<string>A collection of columns by which the query is to be ordered.
searchTerm
stringThe searchTerm used to determine the priority of ordering.
WhereColumnsContain(ObjectQuery, IEnumerable<string>, string)
Returns a query with filtering those entries that contain a search term in at least one of their columns.
public static void WhereColumnsContain(this ObjectQuery query, IEnumerable<string> searchableColumns, string searchTerm)
Parameters
query
ObjectQueryThe query object to perform the Where statement on.
searchableColumns
IEnumerable<string>A collection of columns to be searched for the searchTerm.
searchTerm
stringThe term to be searched for within the column values.