ProjectFindEntityBaseElement Method |
Finds the entity base element with the name specified. Names are considered case insensitive
Namespace:
SD.LLBLGen.Pro.ApplicationCore.ProjectClasses
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.1.0.0 (5.1.0)
Syntax public EntityBaseElement FindEntityBaseElement(
string groupName,
string elementName
)
Public Function FindEntityBaseElement (
groupName As String,
elementName As String
) As EntityBaseElement
Parameters
- groupName
- Type: SystemString
Name of the group. - elementName
- Type: SystemString
Name of the element.
Return Value
Type:
EntityBaseElementthe entity base element (entity / value type) specified or null if not found
Remarks Consider other methods if you want to call this method in a loop as it performs a linear search
See Also