Update: Save DateTime's as UTC and parse to LocalTime at the client.
This commit is contained in:
@ -114,12 +114,12 @@
|
||||
{
|
||||
_name = currentEvent.Name;
|
||||
_description = currentEvent.Description;
|
||||
_eventDate = currentEvent.EventDate;
|
||||
_eventDate = currentEvent.EventDate.ToLocalTime();
|
||||
_location = currentEvent.Location;
|
||||
_createdby = currentEvent.CreatedBy;
|
||||
_createdon = currentEvent.CreatedOn;
|
||||
_createdon = currentEvent.CreatedOn.ToLocalTime();
|
||||
_modifiedby = currentEvent.ModifiedBy;
|
||||
_modifiedon = currentEvent.ModifiedOn;
|
||||
_modifiedon = currentEvent.ModifiedOn.ToLocalTime();
|
||||
}
|
||||
|
||||
if(rsvp != null)
|
||||
|
Reference in New Issue
Block a user