QueryExpressionBuilderHandleShiftOperatorInExpression Method  | 
 
            Handles the shift operator in expression.
            
 
    Namespace: 
   SD.LLBLGen.Pro.LinqSupportClasses.ExpressionHandlers
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntaxprotected virtual LLBLGenProExpressionExpression HandleShiftOperatorInExpression(
	Type targetType,
	Expression valueToShift,
	Expression numberOfBits,
	ExpressionType operatorToUse
)
Protected Overridable Function HandleShiftOperatorInExpression ( 
	targetType As Type,
	valueToShift As Expression,
	numberOfBits As Expression,
	operatorToUse As ExpressionType
) As LLBLGenProExpressionExpression
Parameters
- targetType
 - Type: SystemType
Type of the target. - valueToShift
 - Type: System.Linq.ExpressionsExpression
The value to shift. - numberOfBits
 - Type: System.Linq.ExpressionsExpression
The number of bits. - operatorToUse
 - Type: System.Linq.ExpressionsExpressionType
The operator to use. 
Return Value
Type: 
LLBLGenProExpressionExpressionDbFunctionCallExpression
Remarksthe passed in operands are already handled.
See Also