<PackageReference Include="Relativity.Server.Utility.SDK" Version="5000.0.0" />

DataRowBase

public abstract class DataRowBase
Abstract representation of a sql data row.
public abstract bool this[string fieldName] { get; }

Indicates whether or not the specified field exists in this DataRowBase.

public abstract DataRowBase GetPreviousRow { get; }

Gets the previous data row of the table from which this DataRowBase was initialized.

public abstract int GroupHeaderCount { get; }

Gets the count of the group represented by this DataRowBase.

public abstract bool IsGroupExpanded { get; }

Indicates whether or not the group represented by this DataRowBase is expanded.

public abstract bool IsGroupHeader { get; }

Indicates whether or not this DataRowBase represents a group header.

public abstract object this[int index] { get; set; }

Gets or sets the item at the specified index.

public abstract object this[string fieldName] { get; set; }

Gets or sets the value of the specified field name.

protected DataRowBase()