Class DataStoreFilter<E>
Enables filtering of DataStore entities.
public static class DataStoreFilter<E>
Type Parameters
E
The type of the entity.
- Inheritance
-
DataStoreFilter<E>
- Inherited Members
Methods
AsQueryable()
Returns a IDataStoreFilter<E> instance that allows construction of IDataStoreFilter<E> objects though the use of LINQ syntax.
public static IDataStoreFilter<E> AsQueryable()
Returns
- IDataStoreFilter<E>
A IDataStoreFilter<E> instance.
Where(Expression<Func<E, bool>>)
Returns a IDataStoreFilter<E> that filters a sequence based on a predicate.
public static IDataStoreFilter<E> Where(Expression<Func<E, bool>> predicate)
Parameters
predicate
Expression<Func<E, bool>>The predicate.
Returns
- IDataStoreFilter<E>
A new IDataStoreFilter<E>.