Click or drag to resize

IEntityFieldsCore.DefineField Method (IEntityFieldCore, Int32, String, String, AggregateFunction)

Adds the specified field on the position indexInFields in the resultset.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.11.0.0 (5.11.23.1114)
Syntax
void DefineField(
	IEntityFieldCore fieldToAdd,
	int indexInFields,
	string alias,
	string entityAlias,
	AggregateFunction aggregateFunctionToApply
)

Parameters

fieldToAdd
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFieldCore
The field to add.
indexInFields
Type: System.Int32
The position in the resultset where the field will be created on
alias
Type: System.String
The alias to use for this field in the resultset
entityAlias
Type: System.String
The alias to use for the entity this field belongs to. Required to specify multiple times the same entity in a typed list
aggregateFunctionToApply
Type: SD.LLBLGen.Pro.ORMSupportClasses.AggregateFunction
the aggregate function to apply to this field.
See Also