SchedulerExtension.GetAppointmentToInsert<T>(String, Object, Object, MVCxAppointmentStorage, MVCxResourceStorage) Method
OBSOLETE
Use the GetAppointmentsToInsert method instead.
Obtains appointments which should be inserted into the data source.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
[Obsolete("Use the GetAppointmentsToInsert method instead.")]
public static T GetAppointmentToInsert<T>(
string schedulerName,
object appointmentDataObject,
object resourceDataObject,
MVCxAppointmentStorage appointmentStorage,
MVCxResourceStorage resourceStorage
)
Parameters
Name | Type | Description |
---|---|---|
schedulerName | String | The name of a Scheduler as it is specified by the SettingsBase.Name property. |
appointmentDataObject | Object | A collection of appointments in the scheduler. |
resourceDataObject | Object | A collection of resources in the scheduler. |
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 GetAppointmentToInsert<T> method creates a fake Scheduler but does not apply all scheduler settings specified in the view, for better performance. Then, an appointment being inserted is retrieved from this Scheduler instance.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetAppointmentToInsert<T>(String, Object, Object, MVCxAppointmentStorage, MVCxResourceStorage) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.