PrefetchExtensions.Exclude<TEntity> Method (IEnumerable<TEntity>,Expression<Func<TEntity, 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.11.0.0 (5.11.23.1114)
Syntaxpublic static IEnumerable<TEntity> Exclude<TEntity>(
this IEnumerable<TEntity> collection,
params Expression<Func<TEntity, Object>>[] excludeFields
)
where TEntity : class, IEntityCore
<ExtensionAttribute>
Public Shared Function Exclude(Of TEntity As {Class, IEntityCore}) (
collection As IEnumerable(Of TEntity),
ParamArray excludeFields As Expression(Of Func(Of TEntity, Object))()
) As IEnumerable(Of TEntity)
Parameters
- collection
- Type: System.Collections.Generic.IEnumerable<TEntity>
- excludeFields
- Type:System.Linq.Expressions.Expression<Func<TEntity, Object>>[]
Type Parameters
- TEntity
Return Value
Type:
IEnumerable<TEntity>Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerable<TEntity>. 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