Table of Contents

Interface ITableRelation

Namespace
combit.Reporting.DataProviders
Assembly
combit.ListLabel31.CrossPlatform.dll

Represents a relationship between two tables, defining the association between parent and child tables and their respective columns.

public interface ITableRelation

Properties

ChildColumnName

Gets the name of the column in the child table that is involved in the relation.

string ChildColumnName { get; }

Property Value

string

ChildTableName

Gets the name of the child table in the relation.

string ChildTableName { get; }

Property Value

string

ParentColumnName

Gets the name of the column in the parent table that is involved in the relation.

string ParentColumnName { get; }

Property Value

string

ParentTableName

Gets the name of the parent table in the relation.

string ParentTableName { get; }

Property Value

string

RelationName

Gets the name of the relation.

string RelationName { get; }

Property Value

string