EntityQuery<TEntity>.NotOfEntityType<TEntityFilter> Method |
Sets the type filter of the query to a negated typefilter of the entity type specified as TEntityFilter. This means that
all entities matching this query of type TEntityFilter or the (indirect) subtypes of TEntityFilter won't be fetched.
Namespace: SD.LLBLGen.Pro.QuerySpecAssembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax public EntityQuery<TEntity> NotOfEntityType<TEntityFilter>()
where TEntityFilter : IEntityCore
Public Function NotOfEntityType(Of TEntityFilter As IEntityCore) As EntityQuery(Of TEntity)
Type Parameters
- TEntityFilter
- The type of the entity to filter on
Return Value
Type:
EntityQuery<TEntity>See Also