Esempio n. 1
0
 public string GetQualifiedName(QuoteMode mode = QuoteMode.WhenNecessary)
 {
     if (this.Schema == null)
     {
         return(RedshiftUtility.GetQuotedIdentifier(this.Name, mode, false));
     }
     else
     {
         return(RedshiftUtility.GetQualifiedName(this.Schema.Name, this.Name, mode));
     }
 }