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.8.0.0 (5.8.21.0208)
Syntax public IEnumerable<IFieldElementCore> GetAllFieldsInElement(
bool includeInherited
)
Public Function GetAllFieldsInElement (
includeInherited As Boolean
) As IEnumerable(Of IFieldElementCore)
Parameters
- includeInherited
- Type: SystemBoolean
if set to inherited fields are included as well.
Return Value
Type:
IEnumerableIFieldElementCoreReturns 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