Fetches the fields passed in fieldCollectionToFetch from the persistent storage using the relations and filter information stored in the passed in typed list. For TypedView filling, use the method FetchTypedView()

Namespace: MonoSoftware.LLBLGen
Assembly: MonoSoftware.LLBLGen (in MonoSoftware.LLBLGen.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public virtual void FetchTypedList(
	ITypedListLgp2 typedListToFill,
	IPredicateExpression additionalFilter
)
Visual Basic
Public Overridable Sub FetchTypedList ( 
	typedListToFill As ITypedListLgp2,
	additionalFilter As IPredicateExpression
)
Visual C++
public:
virtual void FetchTypedList(
	ITypedListLgp2^ typedListToFill, 
	IPredicateExpression^ additionalFilter
)
F#
abstract FetchTypedList : 
        typedListToFill : ITypedListLgp2 * 
        additionalFilter : IPredicateExpression -> unit 
override FetchTypedList : 
        typedListToFill : ITypedListLgp2 * 
        additionalFilter : IPredicateExpression -> unit 

Parameters

typedListToFill
Type: ITypedListLgp2
Typed list to fill.
additionalFilter
Type: IPredicateExpression
An additional filter to use to filter the fetch of the typed list. If you need a more sophisticated filter approach, please use the overload which accepts an IRelationalPredicateBucket and add your filter to the bucket you receive when calling typedListToFill.GetRelationInfo().

Implements

IRepository..::..FetchTypedList(ITypedListLgp2, IPredicateExpression)

Remarks

Grabs the fields list and relations set from the typed list passed in.

See Also