I want to be able to send reminders for appointments. Given the tables:
- Appointment
ID (PK)
Start
- Reminder
AppointmentID (FK)
MinutesBeforeAppointmentToSendReminder -- only need minute resolution
I would like to select reminder times:
select ..., DateAdd(minutes, -Reminder.MinutesBeforeAppointmentToSendReminder, Appointment.Start) as ReminderTime
from Appointment join Reminder
on (Appointment.ID = Reminder.AppointmentID)
where (...)
The database platform is SQL Server 2008. LinqToSql will be used to access the database.
There are a slew of date/time types and functions in SQL Server 2008. What are the best types to use for Start and MinutesBeforeAppointmentToSendReminder. What is the best date function to use? [i.e., "best" considering performance, convenience and portability]
(Was planning on DateTime, int, DateAdd)