This sample demonstrates a solution to serialize a WinFS-item into a XML-representation. It's only a proposal and many features are missing. using System;using System.Storage;using System.Storage.Contacts;using System.Storage.Core;using System.Collections.Generic;... System.Text;using System.Storage.Documents; using System.Xml;using System.Xml.Serialization;using System.Xml.Schema; namespace WinFSConsoleApplication2{ /* * This is our serializable object to convert * every WinFS-item-object to there...
using System;using System.Storage;using System.Storage.Contacts;using System.Collections.Generic;... System.Text; /* * This sample application generates 3 new items of the type person. * After that the application generates a list of all people which was born * in the year 1979. */namespace WinFSConsoleApplication1{ class Program { static void Main(string[] args) { /* instancing a winfs data object to get * access to the storage. */ WinFSData winfsdata = new WinFSData(); /* Every item is associated...