Skip to main content
A newer version of this page is available. .

IPersistentObjectStorage<T>.AppendBaseMappings(MappingCollection) Method

Clears existing base mappings and appends the specified mappings.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.Core.dll

Declaration

void AppendBaseMappings(
    MappingCollection target
)

Parameters

Name Type Description
target MappingCollection

A MappingCollection object, containing base mappings.

Remarks

Use this method to map base fields for appointments and resources. The mappings for appointments and resources are accessible with 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