Click or drag to resize
QueryExpressionBuilder.HandleShiftOperatorInExpression 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.2.0.0 (5.2.17.0403)
Syntax
protected virtual LLBLGenProExpressionExpression HandleShiftOperatorInExpression(
	Type targetType,
	Expression valueToShift,
	Expression numberOfBits,
	ExpressionType operatorToUse
)

Parameters

targetType
Type: System.Type
Type of the target.
valueToShift
Type: System.Linq.Expressions.Expression
The value to shift.
numberOfBits
Type: System.Linq.Expressions.Expression
The number of bits.
operatorToUse
Type: System.Linq.Expressions.ExpressionType
The operator to use.

Return Value

Type: LLBLGenProExpressionExpression
DbFunctionCallExpression
Remarks
the passed in operands are already handled.
See Also