Skip to main content

SchedulerStorageControlExtension.GetAppointmentsToUpdate<T>(SchedulerStorageControlSettings, Object, Object) Method

Obtains appointments whose data should be updated in the data source.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public static T[] GetAppointmentsToUpdate<T>(
    SchedulerStorageControlSettings settings,
    object appointmentDataObject,
    object resourceDataObject
)

Parameters

Name Type Description
settings SchedulerStorageControlSettings

A SchedulerStorageControlSettings object containing settings applied to the Scheduler Storage control.

appointmentDataObject Object

A collection of appointments in the scheduler storage control.

resourceDataObject Object

A collection of resources in the scheduler storage control.

Type Parameters

Name
T

Returns

Type Description
T[]

A Model data class instance that is the entity contained in the appointment data source and mapped to an appointment.

Remarks

The GetAppointmentsToUpdate<T> method creates a fake Scheduler Storage control but does not apply all scheduler settings specified in the view, for better performance. Then, an appointment being inserted is retrieved from this Scheduler Storage control instance.

See Also