在我的数据库中,我有一个名为“StartTime”的字段,其数据类型为“Interval day to seconds”。
LLBLGen 将其转换为“timeSpan”
我正在尝试做一个事务工作,我使用下面的代码行来分配时间跨度值。
request.tableTransferObject.StartTime = new TimeSpan(0, startTimePicker.SelectedDate.Value.Hour, startTimePicker.SelectedDate.Value.Minute, startTimePicker.SelectedDate.Value.Second);
但是,当我尝试保存实体时,我得到了下一个异常
An exception was caught during the execution of an action query: Invalid parameter binding
Parameter name: StartTime4. Check InnerException, QueryExecuted and Parameters of this exception to examine the cause of this exception.
我应该怎么做才能将值插入数据库?