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.6.0.0 (5.6.19.0117)
Syntaxpublic 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
RemarksConsider other methods if you want to call this method in a loop as it performs a linear search
See Also