0
如果我只是想最早[活動] [開始時間]我會寫:幫助與LINQ聲明
events.Min(ev => ev.StartTime);
如何延長這樣說的:
"select the [startTime] for the [event] that has the earliest [appointment] [startTime]"
(安[事件]已約會預約[預約])
如果我只是想最早[活動] [開始時間]我會寫:幫助與LINQ聲明
events.Min(ev => ev.StartTime);
如何延長這樣說的:
"select the [startTime] for the [event] that has the earliest [appointment] [startTime]"
(安[事件]已約會預約[預約])
按照分鐘預約開始時間和採取第一個,如:
events.OrderBy(ev => ev.Appointments.Min(app => app.StartTime)).First().StartTime;