Click or drag to resize
DB2SpecificCreatorAppendValidIdentifier Method
Routine which creates a valid identifier string for the plain identifier string passed in and appends the fragments to the queryfragments specified. For example, the identifier will be surrounded by "[]" on sqlserver. If the specified rawIdentifier needs wrapping with e.g. [], the [ and ] characters are added as separate fragments to toAppendTo so no string concatenation has to take place. Use this method over CreateValidAlias if possible.

Namespace:  SD.LLBLGen.Pro.DQE.DB2
Assembly:  SD.LLBLGen.Pro.DQE.DB2 (in SD.LLBLGen.Pro.DQE.DB2.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public override void AppendValidIdentifier(
	QueryFragments toAppendTo,
	string rawIdentifier
)

Parameters

toAppendTo
Type: SD.LLBLGen.Pro.ORMSupportClassesQueryFragments
the fragments container to append the fragments to.
rawIdentifier
Type: SystemString
the plain identifier string to make valid

Implements

IDbSpecificCreatorAppendValidIdentifier(QueryFragments, String)
See Also