Ejemplo n.º 1
0
        public override void BulkAppend(DocumentContext context, DocumentTransaction transaction)
        {
            var formatting = context.Formatting == Format.Indented ? Formatting.Indented : Formatting.None;
            var json       = new JSONSerializer(Logger);

            json.AppendRows(context.Storage, context.Documents.Select(d => d.Data).ToList(), formatting);
        }