PrefetchExtensions.With<TEntity> Method (IQueryable<TEntity>, IEnumerable<Expression<Func<TEntity, Object>>>) |
Defines one or more nodes to fetch, related to the specified entity query. For prefetch path definitions
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 IQueryable<TEntity> With<TEntity>(
this IQueryable<TEntity> query,
IEnumerable<Expression<Func<TEntity, Object>>> prefetch
)
where TEntity : class, IEntityCore
<ExtensionAttribute>
Public Shared Function With(Of TEntity As {Class, IEntityCore}) (
query As IQueryable(Of TEntity),
prefetch As IEnumerable(Of Expression(Of Func(Of TEntity, Object)))
) As IQueryable(Of TEntity)
Parameters
- query
- Type: System.Linq.IQueryable<TEntity>
- prefetch
- Type: System.Collections.Generic.IEnumerable<Expression<Func<TEntity, Object>>>
Type Parameters
- TEntity
Return Value
Type:
IQueryable<TEntity>Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IQueryable<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