コード例 #1
0
ファイル: SqlHelper.cs プロジェクト: wpmyj/CbznSystem
 public DataTable GetAggregate <T>(AggregateFuncion aggregate, string where)
 {
     return(GetAggregate <T>(new AggregateFuncion[] { aggregate }, where));
 }
コード例 #2
0
ファイル: SqlHelper.cs プロジェクト: wpmyj/CbznSystem
 public DataTable GetAggregate <T>(AggregateFuncion aggregate)
 {
     return(GetAggregate <T>(new AggregateFuncion[] { aggregate }, string.Empty));
 }