コード例 #1
0
 public static string Create(this SQAggregates aggregate, SQAdapter adp, params string[] parameters)
 {
     return(adp.CreateAggregate(aggregate, parameters));
 }
コード例 #2
0
 public virtual string CreateAggregate(SQAggregates agg, params string[] parameters)
 {
     return(GetFunctionText(agg.ToString(), parameters));
 }
コード例 #3
0
 public static string Create(this SQAggregates aggregate, params string[] parameters)
 {
     return(Create(aggregate, SQAdapter.Instance, parameters));
 }