FunctionsNotInTEntity Method (EntityQueryTEntity, IEnumerableTEntity) |
Creates a predicate which is true for each entity in query which is not in the list of entities specified
Namespace:
SD.LLBLGen.Pro.QuerySpec
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax public static IPredicate NotIn<TEntity>(
EntityQuery<TEntity> query,
IEnumerable<TEntity> entities
)
where TEntity : IEntityCore
Public Shared Function NotIn(Of TEntity As IEntityCore) (
query As EntityQuery(Of TEntity),
entities As IEnumerable(Of TEntity)
) As IPredicate
Parameters
- query
- Type: SD.LLBLGen.Pro.QuerySpecEntityQueryTEntity
The query. - entities
- Type: System.Collections.GenericIEnumerableTEntity
The entities to compare to.
Type Parameters
- TEntity
- The type of the entity.
Return Value
Type:
IPredicateSee Also