C# 클래스 DotNetWorkQueue.Transport.PostgreSQL.Schema.Constraint

Represents a constraint
파일 보기 프로젝트 열기: blehnen/DotNetWorkQueue 1 사용 예제들

Private Properties

프로퍼티 타입 설명
ConvertToString string

공개 메소드들

메소드 설명
Clone ( ) : Constraint

Clones this instance.

Constraint ( ) : System.Collections.Generic

Initializes a new instance of the Constraint class.

Constraint ( string name, ContraintType type, List columns ) : System.Collections.Generic

Initializes a new instance of the Constraint class.

Constraint ( string name, ContraintType type, string column ) : System.Collections.Generic

Initializes a new instance of the Constraint class.

Script ( ) : string

Translates this constraint into a SQL script

비공개 메소드들

메소드 설명
ConvertToString ( ContraintType type ) : string

Converts a constraint to a string

메소드 상세

Clone() 공개 메소드

Clones this instance.
public Clone ( ) : Constraint
리턴 Constraint

Constraint() 공개 메소드

Initializes a new instance of the Constraint class.
public Constraint ( ) : System.Collections.Generic
리턴 System.Collections.Generic

Constraint() 공개 메소드

Initializes a new instance of the Constraint class.
public Constraint ( string name, ContraintType type, List columns ) : System.Collections.Generic
name string The name.
type ContraintType The type.
columns List The columns.
리턴 System.Collections.Generic

Constraint() 공개 메소드

Initializes a new instance of the Constraint class.
public Constraint ( string name, ContraintType type, string column ) : System.Collections.Generic
name string The name.
type ContraintType The type.
column string The column.
리턴 System.Collections.Generic

Script() 공개 메소드

Translates this constraint into a SQL script
public Script ( ) : string
리턴 string