DbExpressionBuilder.LessThan Method (DbExpression, DbExpression)
Creates a new DbComparisonExpression that determines whether the left argument is less than the right argument.
Assembly: EntityFramework (in EntityFramework.dll)
public static DbComparisonExpression LessThan( this DbExpression left, DbExpression right )
Parameters
- left
-
Type:
System.Data.Entity.Core.Common.CommandTrees.DbExpression
An expression that specifies the left argument.
- right
-
Type:
System.Data.Entity.Core.Common.CommandTrees.DbExpression
An expression that specifies the right argument.
Return Value
Type: System.Data.Entity.Core.Common.CommandTrees.DbComparisonExpressionA new DbComparisonExpression representing the less-than comparison.
Exception | Condition |
---|---|
ArgumentNullException | left or right is null. |
ArgumentException | No common order-comparable result type exists between left and right. |