I am creating a WCF Data Service for my database of appointments.
I'm storing the appointment as a DateTime with a duration of type TimeSpan. When I attempt to access my data service, I get the following error:
"The server encountered an error processing the request. The exception message is 'The property 'Duration' on type 'Appointment' is of type 'Time' which is not a supported primitive type.'. See server logs for more details."
Any idea how I can represent a time duration and have it accessible through my WCF Data Service?