Table of Contents

Class MarkdownTableSink

Namespace
Datafication.Core.Sinks
Assembly
Datafication.Core.dll

Transforms a DataBlock objects into a Markdown table representation.

public class MarkdownTableSink : IDataSink<string>
Inheritance
object
MarkdownTableSink
Implements
IDataSink<string>

Properties

RowLimit

Gets or sets the row limit for the Markdown table.

public int RowLimit { get; set; }

Property Value

int

Methods

Transform(DataBlock)

Transforms the provided data records into a Markdown table representation.

public Task<string> Transform(DataBlock dataBlock)

Parameters

dataBlock DataBlock

The data records to transform.

Returns

Task<string>

A Markdown table representation of the data records.