Click or drag to resize

IDbSpecificCreator.AppendExpressionElementsToBuilder Method

Appends the left and right operands to the string builder specified using the operator specified. By default this will do (leftoperand operator rightoperand) however this method allows databases to perform the operator using e.g. function calls.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntax
void AppendExpressionElementsToBuilder(
	StringBuilder toAppendTo,
	string leftOperandAsString,
	ExOp expressionOperator,
	string rightOperandAsString
)

Parameters

toAppendTo
Type: System.Text.StringBuilder
leftOperandAsString
Type: System.String
expressionOperator
Type: SD.LLBLGen.Pro.ORMSupportClasses.ExOp
rightOperandAsString
Type: System.String
See Also