Пример #1
0
 public string GetFullyQualifiedTableName()
 {
     return(NpgsqlUtils.GetFullyQualifiedTableName(SchemaName, TableName, UsePostgresQuoting));
 }
 public string GetFullyQualifiedTableName(bool usePostgresQuoting)
 {
     return NpgsqlUtils.GetFullyQualifiedTableName(Schema, TableName, usePostgresQuoting);
 }
 public static string GetIdentifier(this string identifier, bool usePostgresQuotes)
 {
     return(usePostgresQuotes
         ? NpgsqlUtils.QuoteIdentifier(identifier)
         : identifier);
 }