Click or drag to resize

PrefetchExtensions Class

Extension method class for prefetch path extension methods.
Inheritance Hierarchy
System.Object
  LLBLGen.Linq.Prefetch.PrefetchExtensions

Namespace:  LLBLGen.Linq.Prefetch
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntax
public static class PrefetchExtensions

The PrefetchExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberExclude<TEntity>(IEnumerable<TEntity>,Expression<Func<TEntity, Object>>[])
Defines a set of fields to exclude. For prefetch path definitions
Public methodStatic memberExclude<TEntity>(TEntity,Expression<Func<TEntity, Object>>[])
Defines a set of fields to exclude. For prefetch path definitions
Public methodStatic memberFilterBy<TEntity>(IEnumerable<TEntity>, Expression<Func<TEntity, Boolean>>)
Defines a predicate on the collection specified. For prefetch path definitions
Public methodStatic memberFilterBy<TEntity>(TEntity, Expression<Func<TEntity, Boolean>>)
Defines a filter on a prefetch path node. For prefetch path definitions
Public methodStatic memberInclude<TEntity>(IEnumerable<TEntity>,Expression<Func<TEntity, Object>>[])
Defines a set of fields to include, excluding all other fields. For prefetch path definitions
Public methodStatic memberInclude<TEntity>(TEntity,Expression<Func<TEntity, Object>>[])
Defines a set of fields to include, excluding all other fields. For prefetch path definitions
Public methodStatic memberLimitTo<TEntity>
Defines a limit on the collection specified. For prefetch path definitions
Public methodStatic memberOrderBy<TEntity>
Redefinition of OrderBy to be used within prefetch path definitions)
Public methodStatic memberOrderByDescending<TEntity>
Redefinition of OrderByDescending to be used within prefetch path definitions
Public methodStatic memberSortBy<TEntity>(IEnumerable<TEntity>, Expression<Func<TEntity, Object>>)
Defines an ordering definition (ascending) on the collection specified. For prefetch path definitions
Public methodStatic memberSortBy<TEntity>(TEntity, Expression<Func<TEntity, Object>>)
Defines an ascending sort expression on a prefetch path node. For prefetch path definitions
Public methodStatic memberSortByDescending<TEntity>(IEnumerable<TEntity>, Expression<Func<TEntity, Object>>)
Defines an ordering definition (descending) on the collection specified. For prefetch path definitions
Public methodStatic memberSortByDescending<TEntity>(TEntity, Expression<Func<TEntity, Object>>)
Defines a descending sort expression on a prefetch path node. For prefetch path definitions
Public methodStatic memberWith<TEntity>(IEnumerable<TEntity>, IEnumerable<Expression<Func<TEntity, Object>>>)
Defines one or more nodes to fetch, related to the specified entity set. For prefetch path definitions
Public methodStatic memberWith<TEntity>(IEnumerable<TEntity>,Expression<Func<TEntity, Object>>[])
Defines one or more nodes to fetch, related to the specified entity set. For prefetch path definitions
Public methodStatic memberWith<TEntity>(IQueryable<TEntity>, IEnumerable<Expression<Func<TEntity, Object>>>)
Defines one or more nodes to fetch, related to the specified entity query. For prefetch path definitions
Public methodStatic memberWith<TEntity>(IQueryable<TEntity>,Expression<Func<TEntity, Object>>[])
Defines one or more nodes to fetch, related to the specified entity query. For prefetch path definitions
Public methodStatic memberWith<TEntity>(TEntity, IEnumerable<Expression<Func<TEntity, Object>>>)
Defines one or more nodes to fetch, related to the specified entity. For prefetch path definitions
Public methodStatic memberWith<TEntity>(TEntity,Expression<Func<TEntity, Object>>[])
Defines one or more nodes to fetch, related to the specified entity. For prefetch path definitions
Top
See Also