LinqUtilsGetEntityName Method |
Gets the name of the entity. If value is a string, value is returned as the string, if value is a type, GetEntityNameFromType
is used to obtain the name
Namespace:
SD.LLBLGen.Pro.LinqSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public static string GetEntityName(
Object value,
IElementCreatorCore generatedCodeElementCreator
)
Public Shared Function GetEntityName (
value As Object,
generatedCodeElementCreator As IElementCreatorCore
) As String
Parameters
- value
- Type: SystemObject
The value to use to obtain the entity name. - generatedCodeElementCreator
- Type: SD.LLBLGen.Pro.ORMSupportClassesIElementCreatorCore
The generated code element creator.
Return Value
Type:
Stringthe name of the entity as represented by value
See Also