Skip to main content

Class TableDataContainerContext

A concrete implementation of the Workspace.XBR.Xperiflow.Etl.IDataContainerContext interface that represents a table.

Namespace: Workspace.XBR.Xperiflow.Etl

Assembly: Xperiflow.dll

Declaration
public class TableDataContainerContext : IDataContainerContext

Implements: Workspace.XBR.Xperiflow.Etl.IDataContainerContext

Properties​

TableName​

The name of the table only. Periods are literal table-name characters.

Declaration
[JsonPropertyName("tableName")]
public string TableName { get; set; }

SchemaName​

Optional SQL schema name. Defaults to dbo when omitted.

Declaration
[JsonPropertyName("schemaName")]
public string? SchemaName { get; set; }

ColumnStringLengths​

Optional SQL string length overrides, keyed by column name. Values may be 1-4000 or MAX.

Declaration
[JsonPropertyName("columnStringLengths")]
public Dictionary<string, string>? ColumnStringLengths { get; set; }

Methods​

ToJson()​

Serializes the Workspace.XBR.Xperiflow.Etl.TableDataContainerContext object to a JSON string.

Declaration
public string ToJson()
Returns​

System.String

A serialized representation of the TableDataContainerContext

FromJson(string)​

Deserializes the JSON string to a Workspace.XBR.Xperiflow.Etl.TableDataContainerContext object.

Declaration
public static TableDataContainerContext FromJson(string data)
Returns​

Workspace.XBR.Xperiflow.Etl.TableDataContainerContext

A Workspace.XBR.Xperiflow.Etl.TableDataContainerContext

Parameters​
TypeNameDescription
System.StringdataThe JSON string representation of the TableDataContainerContext
Exceptions​

System.Text.Json.JsonException

Implements​

Inherited Members​

  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object,System.Object)
  • System.Object.GetHashCode
  • System.Object.GetType
  • System.Object.MemberwiseClone
  • System.Object.ReferenceEquals(System.Object,System.Object)
  • System.Object.ToString

Was this page helpful?