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(
	string strLeftFieldName,
	ArithmeticOperator eOperator,
	SQLExpression objRightExpression
)
Visual Basic
Public Sub New ( _
	strLeftFieldName As String, _
	eOperator As ArithmeticOperator, _
	objRightExpression As SQLExpression _
)
Visual C++
public:
SQLArithmeticExpression(
	String^ strLeftFieldName, 
	ArithmeticOperator eOperator, 
	SQLExpression^ objRightExpression
)

Parameters

strLeftFieldName
Type: System..::..String

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

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

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

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

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

See Also