I understand that the Sampledata functionality of Expression Blend is for prototyping uses only and should not be used as a database for the final application however, this is the case for my project. I was wondering if there is a way to submit change to sampledata such that the changes are saved and are preserved when the application is rerun.
In my initial attempt to add a new record through code, I used the following pseudo code:
Expression.Blend.SampleData.Collection.SampleCollection items = ((Expression.Blend.SampleData.Collection.SampleCollection)Application.Current.Resources["Collection"]).SampleCollection;
Expression.Blend.SampleData.Collection.SampleCollectionItem item = new Expression.Blend.SampleData.Collection.SampleCollectionItem();
items.Add(item);
This worked to add a record to the sampledata but this change only persisted during run time. When the application is closed and re ran, this newly added record is not saved.
Currently, I've found a very very crude work around. In the solution files, there is a folder called "SampleData". Within which, there are three files: collection.xaml, its associated collection.xaml.cs, and collection.xsd. The data is located in the collection.xaml file. Knowing this, I manually write into this file using Notepad. Of course I can open Expression Blend to manipulate the data from the resource panel, but this process cannot be automated using a script. My work around allows me to make the changes I want using a script however is not elegant and it will not work when the application is published. This is because when the application is published, the xaml file would not be accessible anymore.
I am looking for a solution that would allow me to manipulate (add/remove/edit) the records of the sampledata such that the changes persist after the application is rerun and can be used after the application has been published.
Any suggestions would be greatly appreciated! thanks