Wraps LLBLGEn.FetchEntityCollection functionality. Fetches one or more entities.

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

Syntax

C#
public virtual void FetchEntityCollection(
	IEntityCollection2 collectionToFill,
	ExcludeIncludeFieldsList excludedIncludedFields,
	IRelationPredicateBucket filterBucket
)
Visual Basic
Public Overridable Sub FetchEntityCollection ( 
	collectionToFill As IEntityCollection2,
	excludedIncludedFields As ExcludeIncludeFieldsList,
	filterBucket As IRelationPredicateBucket
)
Visual C++
public:
virtual void FetchEntityCollection(
	IEntityCollection2^ collectionToFill, 
	ExcludeIncludeFieldsList^ excludedIncludedFields, 
	IRelationPredicateBucket^ filterBucket
)
F#
abstract FetchEntityCollection : 
        collectionToFill : IEntityCollection2 * 
        excludedIncludedFields : ExcludeIncludeFieldsList * 
        filterBucket : IRelationPredicateBucket -> unit 
override FetchEntityCollection : 
        collectionToFill : IEntityCollection2 * 
        excludedIncludedFields : ExcludeIncludeFieldsList * 
        filterBucket : IRelationPredicateBucket -> unit 

Parameters

collectionToFill
Type: IEntityCollection2
EntityCollection object containing an entity factory which has to be filled
excludedIncludedFields
Type: ExcludeIncludeFieldsList
The list of IEntityField2 objects which have to be excluded or included for the fetch.
filterBucket
Type: IRelationPredicateBucket
Filter information for retrieving the entities

Implements

IRepository..::..FetchEntityCollection(IEntityCollection2, ExcludeIncludeFieldsList, IRelationPredicateBucket)

See Also