DbExpressionBuilder.GreaterThan(DbExpression, DbExpression) Method

Definition

Creates a new DbComparisonExpression that determines whether the left argument is greater than the right argument.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbComparisonExpression ^ GreaterThan(System::Data::Common::CommandTrees::DbExpression ^ left, System::Data::Common::CommandTrees::DbExpression ^ right);
public static System.Data.Common.CommandTrees.DbComparisonExpression GreaterThan (this System.Data.Common.CommandTrees.DbExpression left, System.Data.Common.CommandTrees.DbExpression right);
static member GreaterThan : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbComparisonExpression
<Extension()>
Public Function GreaterThan (left As DbExpression, right As DbExpression) As DbComparisonExpression

Parameters

left
DbExpression

An expression that specifies the left argument.

right
DbExpression

An expression that specifies the right argument.

Returns

A new DbComparisonExpression representing the greater-than comparison.

Exceptions

left or right is null.

No common order-comparable result type exists between left and right.

Applies to