Click or drag to resize
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.3.0.0 (5.3.0)
Syntax
public static IPredicate NotIn<TEntity>(
	EntityQuery<TEntity> query,
	IEnumerable<TEntity> entities
)
where TEntity : IEntityCore

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: IPredicate
See Also