EdmFunctions.DiffMonths(DbExpression, DbExpression) Método
Definição
Cria um DbFunctionExpression que invoca a função 'DiffMonths' canônica com os argumentos especificados, que cada um deve ter um tipo de resultado de DateTime, DateTimeOffset ou Time.Creates a DbFunctionExpression that invokes the canonical 'DiffMonths' function with the specified arguments, which must each have DateTime or DateTimeOffset result type. O tipo de resultado da expressão é Edm.Int32.The result type of the expression is Edm.Int32.
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbFunctionExpression ^ DiffMonths(System::Data::Common::CommandTrees::DbExpression ^ dateValue1, System::Data::Common::CommandTrees::DbExpression ^ dateValue2);
public static System.Data.Common.CommandTrees.DbFunctionExpression DiffMonths (this System.Data.Common.CommandTrees.DbExpression dateValue1, System.Data.Common.CommandTrees.DbExpression dateValue2);
static member DiffMonths : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function DiffMonths (dateValue1 As DbExpression, dateValue2 As DbExpression) As DbFunctionExpression
Parâmetros
- dateValue1
- DbExpression
Uma expressão que especifica o primeiro argumento de valor de data.An expression that specifies the first date value argument.
- dateValue2
- DbExpression
Uma expressão que especifica o segundo argumento de valor de data.An expression that specifies the second date value argument.
Retornos
Um novo DbFunctionExpression que retorna o número de meses que é a diferença entre dateValue1 e dateValue2.A new DbFunctionExpression that returns the number of months that is the difference between dateValue1 and dateValue2.