EdmFunctions.AddMilliseconds(DbExpression, DbExpression) Method

Definition

Creates a DbFunctionExpression that invokes the canonical 'AddMilliseconds' function with the specified arguments, which must have DateTime, DateTimeOffset or Time, and integer result types. The result type of the expression is the same as the result type of 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

Parameters

timeValue
DbExpression

An expression that specifies the value to which addValue should be added.

addValue
DbExpression

An expression that specifies the number of milliseconds to add to timeValue.

Returns

A new DbFunctionExpression that adds the number of milliseconds specified by addValue to the value specified by timeValue.

Exceptions

timeValue or addValue is null.

timeValue or addValue is invalid.

Applies to