Click or drag to resize

GroupableModelElement.GetAllFieldsInElement 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.10.0.0 (5.10.0)
Syntax
public IEnumerable<IFieldElementCore> GetAllFieldsInElement(
	bool includeInherited
)

Parameters

includeInherited
Type: System.Boolean
if set to true inherited fields are included as well.

Return Value

Type: IEnumerable<IFieldElementCore>
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