QuerySpecExtensionMethods.Except Method |
Name | Description | |
---|---|---|
![]() ![]() | Except(DynamicQuery, DynamicQuery) |
Specifies the where clause of the query by appending a predicate which is true for each element in query which is also in toExclude.
|
![]() ![]() | Except<T>(DynamicQuery<T>, DynamicQuery) |
Specifies the where clause of the query by appending a predicate which is true for each element in query which is also in toExclude.
|
![]() ![]() | Except<TEntity>(EntityQuery<TEntity>, EntityQuery<TEntity>) |
Specifies the where clause of the query by appending a predicate which is true for each entity in query which isn't in toExclude.
|
![]() ![]() | Except<TEntity>(EntityQuery<TEntity>, IEnumerable<TEntity>) |
Specifies the where clause of the query by appending a predicate which is true for each entity in query which isn't in the list 'entities'
|