SchedulerDataStorage.DateTimeSavingMode Property
Gets or sets in what time zone to store the appointment dates.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v24.1.dll
NuGet Package: DevExpress.Win.Scheduler
Declaration
[DefaultValue(DateTimeSavingMode.Appointment)]
public DateTimeSavingMode DateTimeSavingMode { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DateTimeSavingMode | Appointment | A DateTimeSavingMode enumeration member that specifies a conversion required before storing the DateTime value. |
Available values:
Name | Description |
---|---|
Appointment | Do not convert Start and End appointment values before storing them in the data source. |
Storage | Convert Start and End appointment values to the time zone of the SchedulerControl before storing them in the data source. |
Utc | Convert Start and End appointment values to UTC before storing them in the data source. |
Remarks
If for any reason (e.g. to simplify queries for DateTime values stored in the data source) you require that the appointment start and end data belong to the same time zone, set the DateTimeSavingMode to the DateTimeSavingMode.Storage value to store them in the timezone of the storage (specified using the SchedulerDataStorage.TimeZoneId property).
Tip
Use the UTC time zone for the storage and set the DateTimeSavingMode to the DateTimeSavingMode.Storage value in your applications to make the DateTime data consistent throughout different databases used in your applications.