How to: Upgrade Metadata When the Provider Changes the Metadata Schema

This topic describes how to use a managed language to upgrade a metadata storage service store when the provider changes the metadata schema.

This topic assumes a basic familiarity with C# and Microsoft .NET Framework concepts.

The examples in this topic focus on the following Sync Framework classes and interfaces:

Understanding Metadata Upgrade

The metadata storage service stores replica and item metadata in a lightweight database. A provider can define custom fields in the database that may change as a developer releases new versions of a particular provider. Sync Framework provides support for upgrading the metadata store because of provider version changes.

A metadata store upgrade is necessary only if the custom fields used by the provider change. Changes to the format of the item data do not impact the format of the metadata.

When a provider stores metadata for a replica, it sets the provider version that is compatible with the replica metadata by using ProviderVersion. When a provider later opens the metadata store, it can check the provider version that is associated with the replica metadata. When the version of the provider that opens the metadata store is different than the provider version that is stored in the metadata, the provider can upgrade the metadata schema for the replica.

A metadata store is upgraded by using the following steps.

  1. A SqlSyncMetadataStoreSerializer object is used to serialize the replica metadata.

  2. The replica metadata is removed from the metadata store.

  3. Replica metadata in the new format is created in the metadata store.

  4. The previously serialized replica metadata is imported into the new format by using the SqlSyncMetadataStoreSerializer object.

Sync Framework provides a callback mechanism, IProviderUpgradeCallback, to allow the provider to control the upgrade process, including making any necessary changes to the metadata.

For more information, see Upgrading the Metadata Store Version.

Build Requirements

Example

The example code in this topic shows how to upgrade a metadata store that adds a custom field during the upgrade. A class that implements IProviderUpgradeCallback is used to set the value of the new field for each item in the metadata store.

Upgrading the Metadata Store

This example upgrades the metadata store when the current provider version of the replica metadata is less than the specified value. As part of the upgrade, an additional custom field is added to the metadata schema for the replica and is specified as an index field.

Be aware that the SqlMetadataStore object must be disposed and reopened so that all references to the ReplicaMetadata object are released. If this is not done, the call to RemoveReplicaMetadata(SyncIdFormatGroup, SyncId) throws ReplicaMetadataInUseException.

Responding to Upgrade Callbacks

This example defines a class that implements the IProviderUpgradeCallback interface. In the previous example, an instance of this class is specified to the DeserializeReplicaMetadata(String, UInt32, IProviderUpgradeCallback) method. Sync Framework calls the methods in this interface to allow the provider to control the upgrade and make any necessary changes to the metadata. In the OnProviderUpgradeRequired(UInt32) method of this example, the upgrade is canceled if the provider version currently stored in the replica metadata is not the expected value. In the OnItemMetadataDeserialized(ItemMetadata, DictionaryString, SyncFieldValue) method of this example, the value of the new address field is set in the metadata for each item.

Next Steps

Next, you might want to learn more about upgrading the metadata store when the version of Sync Framework changes. For more information, see Upgrading the Metadata Store Version.

You might also want to learn more about using the canonical format of the metadata store to enable components of different versions to interoperate without upgrading the metadata store. For more information, see Accessing Metadata from Components with Different Versions.

Vea también

Conceptos

Programming Common Standard Custom Provider Tasks

Upgrading the Metadata Store Version