Table of Contents

Class OdfSchemaKeyMapping

Namespace
OdfKit.Database
Assembly
OdfKit.dll

Represents a mapping between primary key and foreign key columns. 表示主外鍵欄位的對應對照。

public sealed class OdfSchemaKeyMapping
Inheritance
OdfSchemaKeyMapping
Inherited Members

Constructors

OdfSchemaKeyMapping(string, string)

Initializes a new instance of the OdfSchemaKeyMapping class. 初始化 OdfSchemaKeyMapping 類別的新執行個體。

public OdfSchemaKeyMapping(string column, string relatedColumn)

Parameters

column string

The column name in the current table. / 目前資料表欄位名稱。

relatedColumn string

The column name in the referenced table. / 參照資料表欄位名稱。

Properties

Column

Gets the column name in the current table. 取得目前資料表欄位名稱。

public string Column { get; }

Property Value

string

RelatedColumn

Gets the column name in the referenced table. 取得參照資料表欄位名稱。

public string RelatedColumn { get; }

Property Value

string