EdmFunctions.AddMilliseconds(DbExpression, DbExpression) 方法

定义

创建一个 DbFunctionExpression,它使用指定的参数(这些参数必须具有 DateTime、DateTimeOffset 或 Time 以及整数结果类型)调用规范 'AddMilliseconds' 函数。 表达式的结果类型与 的结果类型 timeValue相同。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ AddMilliseconds(System::Data::Common::CommandTrees::DbExpression ^ timeValue, System::Data::Common::CommandTrees::DbExpression ^ addValue);
public static System.Data.Common.CommandTrees.DbFunctionExpression AddMilliseconds (this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue);
static member AddMilliseconds : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function AddMilliseconds (timeValue As DbExpression, addValue As DbExpression) As DbFunctionExpression

参数

timeValue
DbExpression

一个表达式,指定应向其 addValue 添加的值。

addValue
DbExpression

一个表达式,指定要添加到 timeValue的毫秒数。

返回

一个新的 DbFunctionExpression,它将 指定的 addValue 毫秒数添加到 指定的 timeValue值。

例外

timeValueaddValuenull

timeValueaddValue 无效。

适用于