Skip to main content

PersistentObjectStorage<T>.AppendBaseMappings(MappingCollection) Method

Clears previous mappings and appends base mappings.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public virtual void AppendBaseMappings(
    MappingCollection target
)

Parameters

Name Type Description
target MappingCollection

A MappingCollection object containing mappings.

Remarks

Use this method to map base fields for appointments, resources and appointment dependencies. The mappings for appointments and resources are available via the AppointmentStorageBase.Mappings and ResourceStorage.Mappings properties respectively.

Note

To add mappings for custom fields, use the AppointmentCustomFieldMappingCollection.Add and ResourceCustomFieldMappingCollection.Add methods of appointment and resource collections, which are available via the AppointmentStorage.CustomFieldMappings and ResourceStorage.CustomFieldMappings properties respectively.

See Also