C# Class Tortuga.Chain.PostgreSql.PostgreSqlObjectName

Represents an object in PostgreSql (e.g. table, view, procedure)
Datei anzeigen Open project: docevaad/Chain Class Usage Examples

Public Properties

Property Type Description
Empty PostgreSqlObjectName

Public Methods

Method Description
Equals ( PostgreSqlObjectName other ) : bool

Equalses the specified other.

Equals ( object obj ) : bool

Determines whether the specified object, is equal to this instance.

GetHashCode ( ) : int

Returns a hash code for this instance.

PostgreSqlObjectName ( string qualifiedName ) : System

Initializes a new instance of the PostgreSqlObjectName struct.

PostgreSqlObjectName ( string schema, string name ) : System

Initializes a new instance of the PostgreSqlObjectName struct.

PostgreSqlObjectName ( string database, string schema, string name ) : System

Initializes a new instance of the PostgreSqlObjectName struct.

ToQuotedString ( ) : string

To the quoted string.

ToString ( ) : string

Returns a string that represents this instance.

operator ( ) : bool

Implements the operator !=.

Method Details

Equals() public method

Equalses the specified other.
public Equals ( PostgreSqlObjectName other ) : bool
other PostgreSqlObjectName The other.
return bool

Equals() public method

Determines whether the specified object, is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
return bool

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int

PostgreSqlObjectName() public method

Initializes a new instance of the PostgreSqlObjectName struct.
/// Fully qualified name is null or empty.;qualifiedName /// or /// Four-part identifiers are not supported. ///
public PostgreSqlObjectName ( string qualifiedName ) : System
qualifiedName string Name of the qualified.
return System

PostgreSqlObjectName() public method

Initializes a new instance of the PostgreSqlObjectName struct.
public PostgreSqlObjectName ( string schema, string name ) : System
schema string The schema.
name string The name.
return System

PostgreSqlObjectName() public method

Initializes a new instance of the PostgreSqlObjectName struct.
public PostgreSqlObjectName ( string database, string schema, string name ) : System
database string The database.
schema string The schema.
name string The name.
return System

ToQuotedString() public method

To the quoted string.
public ToQuotedString ( ) : string
return string

ToString() public method

Returns a string that represents this instance.
public ToString ( ) : string
return string

operator() public static method

Implements the operator !=.
public static operator ( ) : bool
return bool

Property Details

Empty public_oe static_oe property

An empty schema/name pair
public static PostgreSqlObjectName,Tortuga.Chain.PostgreSql Empty
return PostgreSqlObjectName