Exemplo n.º 1
0
 public static string Create(this SQAggregates aggregate, SQAdapter adp, params string[] parameters)
 {
     return(adp.CreateAggregate(aggregate, parameters));
 }
Exemplo n.º 2
0
 public virtual string CreateAggregate(SQAggregates agg, params string[] parameters)
 {
     return(GetFunctionText(agg.ToString(), parameters));
 }
Exemplo n.º 3
0
 public static string Create(this SQAggregates aggregate, params string[] parameters)
 {
     return(Create(aggregate, SQAdapter.Instance, parameters));
 }