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

Parameters

strLeftFieldName
Type: System..::..String

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

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

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

objRightValue
Type: System..::..Object

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

See Also