Skip to main content

SchedulerStorageControlExtension.GetAppointmentsToRemove<T>(String, Object, MVCxAppointmentStorage, MVCxResourceStorage) Method

Obtains appointments which should be removed from the data source.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public static T[] GetAppointmentsToRemove<T>(
    string name,
    object appointmentDataObject,
    MVCxAppointmentStorage appointmentStorage,
    MVCxResourceStorage resourceStorage
)

Parameters

Name Type Description
name String

The name of a Scheduler Storage control as it is specified by the SettingsBase.Name property.

appointmentDataObject Object

A collection of appointments in the scheduler storage control.

appointmentStorage MVCxAppointmentStorage

An MVCxAppointmentStorage object that implements the appointment storage functionality and contains mappings.

resourceStorage MVCxResourceStorage

An MVCxResourceStorage object that implements the resource storage functionality and contains mappings.

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 GetAppointmentsToRemove<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