Initializes a new instance of the SQLArithmeticExpression class

Namespace: DatabaseObjects.SQL
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public SQLArithmeticExpression(
	SQLExpression objLeftExpression,
	ArithmeticOperator eOperator,
	SQLExpression objRightExpression
)
Visual Basic
Public Sub New ( _
	objLeftExpression As SQLExpression, _
	eOperator As ArithmeticOperator, _
	objRightExpression As SQLExpression _
)
Visual C++
public:
SQLArithmeticExpression(
	SQLExpression^ objLeftExpression, 
	ArithmeticOperator eOperator, 
	SQLExpression^ objRightExpression
)

Parameters

objLeftExpression
Type: DatabaseObjects.SQL..::..SQLExpression

[Missing <param name="objLeftExpression"/> documentation for "M:DatabaseObjects.SQL.SQLArithmeticExpression.#ctor(DatabaseObjects.SQL.SQLExpression,DatabaseObjects.SQL.ArithmeticOperator,DatabaseObjects.SQL.SQLExpression)"]

eOperator
Type: DatabaseObjects.SQL..::..ArithmeticOperator

[Missing <param name="eOperator"/> documentation for "M:DatabaseObjects.SQL.SQLArithmeticExpression.#ctor(DatabaseObjects.SQL.SQLExpression,DatabaseObjects.SQL.ArithmeticOperator,DatabaseObjects.SQL.SQLExpression)"]

objRightExpression
Type: DatabaseObjects.SQL..::..SQLExpression

[Missing <param name="objRightExpression"/> documentation for "M:DatabaseObjects.SQL.SQLArithmeticExpression.#ctor(DatabaseObjects.SQL.SQLExpression,DatabaseObjects.SQL.ArithmeticOperator,DatabaseObjects.SQL.SQLExpression)"]

See Also