DbExpressionBuilder.Plus(DbExpression, DbExpression) 方法

定义

创建一个新的 DbArithmeticExpression,它将左侧参数与右侧参数相加。

public static System.Data.Entity.Core.Common.CommandTrees.DbArithmeticExpression Plus(this System.Data.Entity.Core.Common.CommandTrees.DbExpression left, System.Data.Entity.Core.Common.CommandTrees.DbExpression right);
static member Plus : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbArithmeticExpression
<Extension()>
Public Function Plus (left As DbExpression, right As DbExpression) As DbArithmeticExpression

参数

left
DbExpression

一个指定左侧参数的表达式。

right
DbExpression

一个指定右侧参数的表达式。

返回

表示加法运算的新 DbArithmeticExpression。

例外

向左或向右为 null。

左侧和右侧之间不存在常见的数值结果类型。

适用于