Click or drag to resize

TypedListBase<T>.OnResultsetBuilt Method

Method which is called at the end of the generated BuildResultset method and which can be used to add additional fields to the fields object for the typed list, or to manipulate the field objects added to the typed list.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax
protected virtual void OnResultsetBuilt(
	IEntityFields fields
)

Parameters

fields
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFields
The fields.
Remarks
Be sure to call fields.Expand(n) first, where n is the number of fields you want to add.
See Also