DbExpressionBuilder.Equal Method (DbExpression, DbExpression)
Creates a new DbComparisonExpression that compares the left and right arguments for equality.
Assembly: EntityFramework (in EntityFramework.dll)
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 equality comparison.
Exception | Condition |
---|---|
ArgumentNullException | left or right is null. |
ArgumentException | No common numeric result type exists between left and right. |