我有以下代码,当前给了我一个小时/分钟(24 小时格式)的时间跨度列表。我需要更改 string.format 以显示小时/分钟 AM 或 PM(12 小时格式)。
var availableTimes =
_appointmentService.GetAvailableHours(date, appointmentId)
.Select(x => string.Format("{0:D2}:{1:D2}", x.Hours, x.Minutes));
最好的方法是如何做到这一点?反正我看不到时间跨度。
*这是它使用的 GetAvailableHours 方法。
public IEnumerable<TimeSpan> GetAvailableHours(DateTime? date, int? appointmentId)
{
if (date == null) return null;
var hours = new List<DateTime>();
for (var ts = new TimeSpan(); ts <= new TimeSpan(23, 30, 0); ts = ts.Add(new TimeSpan(0, 30, 0)))
{
hours.Add(date.Value + ts);
}
var booked = _appointmentRepository.Get
.Where(x =>
(!appointmentId.HasValue || x.Id != appointmentId))
.Select(x => x.ScheduledTime).ToList();
//return available hours from shifts
var workingHours = from h in hours
from s in
_scheduleRepository.Get.Where(
x => x.ShiftStart <= h && x.ShiftEnd >= EntityFunctions.AddHours(h, 1))
where
s.ShiftStart <= h && s.ShiftEnd >= h.AddHours(-1) &&
booked.Count(x => x == h) == 0
select h.TimeOfDay;
//match available hours with another appointment
return workingHours.Distinct();
}