DbExpressionBuilder.GreaterThanOrEqual(DbExpression, DbExpression) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new DbComparisonExpression that determines whether the left argument is greater than or equal to the right argument.
public static System.Data.Entity.Core.Common.CommandTrees.DbComparisonExpression GreaterThanOrEqual (this System.Data.Entity.Core.Common.CommandTrees.DbExpression left, System.Data.Entity.Core.Common.CommandTrees.DbExpression right);
static member GreaterThanOrEqual : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbComparisonExpression
<Extension()>
Public Function GreaterThanOrEqual (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-or-equal-to comparison.
Exceptions
left or right is null.
No common order-comparable result type exists between left and right.
Applies to
Entity Framework