Click or drag to resize

PrefetchExtensionsExcludeTEntity Method (IEnumerableTEntity, ExpressionFuncTEntity, Object)

Defines a set of fields to exclude. For prefetch path definitions

Namespace:  LLBLGen.Linq.Prefetch
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntax
public static IEnumerable<TEntity> Exclude<TEntity>(
	this IEnumerable<TEntity> collection,
	params Expression<Func<TEntity, Object>>[] excludeFields
)
where TEntity : class, IEntityCore

Parameters

collection
Type: System.Collections.GenericIEnumerableTEntity
excludeFields
Type: System.Linq.ExpressionsExpressionFuncTEntity, Object

Type Parameters

TEntity

Return Value

Type: IEnumerableTEntity

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableTEntity. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also