私のDBには、「間隔日から秒」データ型の「StartTime」という名前のフィールドがあります。
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.
DBに値を挿入するにはどうすればよいですか?