Click or drag to resize
DbSpecificCreatorBaseConvertFieldToRawName Method
Converts the name of the field to the plain base name to use further in the CreateFieldName routine. This routine makes sure expressions and function calls are taken into account. Used as the start call from CreateFieldName.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
protected virtual string ConvertFieldToRawName(
	IEntityFieldCore fieldCore,
	IFieldPersistenceInfo persistenceInfo,
	string fieldName,
	string objectAlias,
	bool applyAggregateFunction
)

Parameters

fieldCore
Type: SD.LLBLGen.Pro.ORMSupportClassesIEntityFieldCore
The field core.
persistenceInfo
Type: SD.LLBLGen.Pro.ORMSupportClassesIFieldPersistenceInfo
The persistence info.
fieldName
Type: SystemString
Name of the field.
objectAlias
Type: SystemString
The object alias.
applyAggregateFunction
Type: SystemBoolean
if set to true [apply aggregate function].

Return Value

Type: String
base name for the field to use in a query.
See Also