PrefetchExtensionsFilterByTEntity Method (TEntity, ExpressionFuncTEntity, Boolean) | 
 
            Defines a filter on a prefetch path node. 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)
Syntaxpublic static TEntity FilterBy<TEntity>(
	this TEntity entity,
	Expression<Func<TEntity, bool>> filter
)
where TEntity : class, IEntityCore
<ExtensionAttribute>
Public Shared Function FilterBy(Of TEntity As {Class, IEntityCore}) ( 
	entity As TEntity,
	filter As Expression(Of Func(Of TEntity, Boolean))
) As TEntityParameters
- entity
 - Type: TEntity
 - filter
 - Type: System.Linq.ExpressionsExpressionFuncTEntity, Boolean
 
Type Parameters
- TEntity
 
Return Value
Type: 
TEntityUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . 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