コード例 #1
0
 public string GetFullyQualifiedTableName()
 {
     return(NpgsqlUtils.GetFullyQualifiedTableName(SchemaName, TableName, UsePostgresQuoting));
 }
コード例 #2
0
 public string GetFullyQualifiedTableName(bool usePostgresQuoting)
 {
     return NpgsqlUtils.GetFullyQualifiedTableName(Schema, TableName, usePostgresQuoting);
 }
コード例 #3
0
 public static string GetIdentifier(this string identifier, bool usePostgresQuotes)
 {
     return(usePostgresQuotes
         ? NpgsqlUtils.QuoteIdentifier(identifier)
         : identifier);
 }