Click or drag to resize
GroupableModelElementGetAllFieldsInElement Method (Boolean)
Gets all fields (normal fields, identifying fields, foreign key fields) in this element, ordered on field index and then name, ascending.

Namespace:  SD.LLBLGen.Pro.ApplicationCore.EntityModel
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public IEnumerable<IFieldElementCore> GetAllFieldsInElement(
	bool includeInherited
)

Parameters

includeInherited
Type: SystemBoolean
if set to inherited fields are included as well.

Return Value

Type: IEnumerableIFieldElementCore
Returns all fields, foreign key fields and identifying fields (always specified even if they're inherited) ordered by field index and then name ascending
Remarks
All inherited fields will be up front, following the fields of the element with the root's fields at the top.
See Also