DbExpressionBuilder.Divide Method (DbExpression, DbExpression)

 

Creates a new DbArithmeticExpression that divides the left argument by the right argument.

Namespace:   System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly:  EntityFramework (in EntityFramework.dll)

public static DbArithmeticExpression Divide(
	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.DbArithmeticExpression

A new DbArithmeticExpression representing the division operation.

Exception Condition
ArgumentNullException

left or right is null.

ArgumentException

No common numeric result type exists between left and right.