LinqUtilsGetFieldObject Method (IEntityCore, String, Boolean) | 
 
            Gets the field object with the name passed in from the entity specified.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntaxpublic static IEntityFieldCore GetFieldObject(
	IEntityCore entityInstance,
	string fieldName,
	bool entityIsSelfServicing
)
Public Shared Function GetFieldObject ( 
	entityInstance As IEntityCore,
	fieldName As String,
	entityIsSelfServicing As Boolean
) As IEntityFieldCore
Parameters
- entityInstance
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityCore
The entity instance. - fieldName
 - Type: SystemString
Name of the field. - entityIsSelfServicing
 - Type: SystemBoolean
if set to true, entityInstance is assumed to be an IEntity. This flag is used to optimize frequent calls to
            this routine. 
Return Value
Type: 
IEntityFieldCore
See Also