Serialization
The implementation demonstrated in this article can also be reviewed in the Serialize QueryableDataProvider SDK Example of the SDK Examples Browser
This article will go through the process of serializing and deserializing the current state of QueryableDataProvider. Through it the state of the control can be persisted and loaded the next time the application is started.
Using the DataContract Attribute
The DataContract attribute is added to all classes used by the QueryableDataProvider. This enables easy serialization with the DataContractSerializer. Below is a sample definition of such classes. The DataContract attribute is added on class level and the DataMember one is added for each property.
Example 1: Using the DataContract attribute
Implementing the Serializer
The next step is to implement the serializer. When serializing the provider an instance of the DataProviderSettings class has to be created with all of its properties set. After that you can serialize the instance to a file or a stream.
Example 2: Implementing the Serializer
Specifying the KnownTypes
In the previous example a collection of KnownTypes is passed to the DataContractSerializer. It consists of all types needed for serializing the QueryableDataProvider. For this purpose we created a new QueryablePivotSerializationHelper class which has a static member - KnownTypes.
Example 3: Specifying the KnownTypes
Serialize and Deserialize
The final step is to serialize and deserialize the data provider.