Click or drag to resize
PathEdgeRootParser<TSource>.Prefetch Method (Expression<Func<TSource, Object>>)
For creating simple prefetch paths, where all you need is to prefetch an entity/entitycollection and no sorting/filtering etc is required.

Namespace:  SD.LLBLGen.Pro.LinqSupportClasses.PrefetchPathAPI
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public IPathEdgeRootParser<TSource> Prefetch(
	Expression<Func<TSource, Object>> expression
)

Parameters

expression
Type: System.Linq.Expressions.Expression<Func<TSource, Object>>
A member access expression lambda, e.g. 'c=>c.Orders' to fetch related orders for a customer instance

Return Value

Type: IPathEdgeRootParser<TSource>
this instance for method chaining

Implements

IPathEdgeRootParser<TSource>.Prefetch<TDestination>(Expression<Func<TSource, Object>>)
See Also