public static string Create(this SQAggregates aggregate, SQAdapter adp, params string[] parameters)
 {
     return(adp.CreateAggregate(aggregate, parameters));
 }
 public virtual string CreateAggregate(SQAggregates agg, params string[] parameters)
 {
     return(GetFunctionText(agg.ToString(), parameters));
 }
 public static string Create(this SQAggregates aggregate, params string[] parameters)
 {
     return(Create(aggregate, SQAdapter.Instance, parameters));
 }