EdmFunctions.CreateTime(DbExpression, DbExpression, DbExpression) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建一个 DbFunctionExpression,它使用指定的参数调用规范形式的“CreateTime”函数。 second
结果类型必须为 Edm.Double,而所有其他参数的结果类型必须为 Edm.Int32。 表达式的结果类型为 Edm.Time。
public:
static System::Data::Common::CommandTrees::DbFunctionExpression ^ CreateTime(System::Data::Common::CommandTrees::DbExpression ^ hour, System::Data::Common::CommandTrees::DbExpression ^ minute, System::Data::Common::CommandTrees::DbExpression ^ second);
public static System.Data.Common.CommandTrees.DbFunctionExpression CreateTime (System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second);
static member CreateTime : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
Public Function CreateTime (hour As DbExpression, minute As DbExpression, second As DbExpression) As DbFunctionExpression
参数
- hour
- DbExpression
一个表达式,为新的 DateTime 实例提供小时数值。
- minute
- DbExpression
一个表达式,为新的 DateTime 实例提供分钟数值。
- second
- DbExpression
一个表达式,为新的 DateTime 实例提供秒钟数值。
返回
新 DbFunctionExpression 基于指定的值返回新的 Time。
例外
hour
、minute
或 second
为 null
。
hour
、 minute
或 second
无效。