Click or drag to resize

DbSpecificCreatorBase.ConvertFieldToRawName 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.6.0.0 (5.6.19.0117)
Syntax
protected virtual string ConvertFieldToRawName(
	IEntityFieldCore fieldCore,
	IFieldPersistenceInfo persistenceInfo,
	string fieldName,
	string objectAlias,
	bool applyAggregateFunction
)

Parameters

fieldCore
Type: SD.LLBLGen.Pro.ORMSupportClasses.IEntityFieldCore
The field core.
persistenceInfo
Type: SD.LLBLGen.Pro.ORMSupportClasses.IFieldPersistenceInfo
The persistence info.
fieldName
Type: System.String
Name of the field.
objectAlias
Type: System.String
The object alias.
applyAggregateFunction
Type: System.Boolean
if set to true [apply aggregate function].

Return Value

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