Ejemplo n.º 1
0
        public void tryit()
        {
            var mapping = new DocumentMapping(typeof(User));
            var writer  = new SourceWriter();

            writer.StartNamespace("MyApplication");

            mapping.GenerateDocumentStorage(writer);

            writer.FinishBlock();

            Debug.WriteLine(writer.Code());
        }