Net.Http.WebApi.OData.Query.Expressions.BinaryOperatorNode.BinaryOperatorNode C# (CSharp) Method

BinaryOperatorNode() public method

Initialises a new instance of the BinaryOperatorNode class.
public BinaryOperatorNode ( SingleValueNode left, BinaryOperatorKind operatorKind, SingleValueNode right )
left SingleValueNode The left query node.
operatorKind BinaryOperatorKind Kind of the operator.
right SingleValueNode The right query node.
        public BinaryOperatorNode(SingleValueNode left, BinaryOperatorKind operatorKind, SingleValueNode right)
        {
            this.Left = left;
            this.OperatorKind = operatorKind;
            this.Right = right;
        }
BinaryOperatorNode