EdmFunctions.AddNanoseconds(DbExpression, DbExpression) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a DbFunctionExpression that invokes the canonical 'AddNanoseconds' 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 static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression AddNanoseconds (this System.Data.Entity.Core.Common.CommandTrees.DbExpression timeValue, System.Data.Entity.Core.Common.CommandTrees.DbExpression addValue);
static member AddNanoseconds : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function AddNanoseconds (timeValue As DbExpression, addValue As DbExpression) As DbFunctionExpression
Parameters
- timeValue
- DbExpression
An expression that specifies the value to which addValueshould be added.
- addValue
- DbExpression
An expression that specifies the number of nanoseconds to add to timeValue.
Returns
A new DbFunctionExpression that adds the number of nanoseconds specified by addValue to the value specified by timeValue.
Applies to
Entity Framework