私はタイムシートモジュールに取り組んでいます。私の問題は、次のフィールドを持つテーブルがあることです。
work_start_time Datetime
work_end_time Datetime
and other field
今の私の要件は、日付までに提出された合計時間を計算する必要があることです。
フィールドはこの形式のように保存されますdd/mm/yy 10:00 AM
上記の2つのフィールドから合計時間を見つけ、LINQを使用して合計時間を計算する方法を教えてください。
どんな助けでもいただければ幸いです。
int totalhours = (from d in db.timesheetWorkingHours
.Where(d=>d.WStartTime.HasValue && d.WEndTime.HasValue)
select (d.WStartTime - d.WEndTime).Hours).FirstOrDefault();
its gives error
'System.Nullable<System.TimeSpan>' does not contain a definition for 'Hours' and no extension method 'Hours' accepting a first argument of type 'System.Nullable<System.TimeSpan>' could be found (are you missing a using directive or an assembly reference?)