| EntityFieldsCoreTFieldDefineField 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.7.0.0 (5.7.0)
 Syntax
Syntaxpublic void DefineField(
	IEntityFieldCore field,
	int indexInFields,
	string alias,
	string entityAlias,
	AggregateFunction aggregateFunctionToApply
)
Public Sub DefineField ( 
	field As IEntityFieldCore,
	indexInFields As Integer,
	alias As String,
	entityAlias As String,
	aggregateFunctionToApply As AggregateFunction
)
Parameters
- field
- Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
 The field to add.
- indexInFields
- Type: SystemInt32
 The position in the resultset where the field will be created on
- alias
- Type: SystemString
 The alias to use for this field in the resultset
- entityAlias
- Type: SystemString
 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.ORMSupportClassesAggregateFunction
 the aggregate function to apply to this field.
Implements
IEntityFieldsCoreDefineField(IEntityFieldCore, Int32, String, String, AggregateFunction) See Also
See Also