Exemple #1
0
 internal DataSetInfo(PartitionInfo pinfo, OrderByInfo oinfo, DistinctInfo dinfo)
 {
     this.partitionInfo = pinfo;
     this.orderByInfo   = oinfo;
     this.distinctInfo  = dinfo;
 }
Exemple #2
0
 internal DataSetInfo(DataSetInfo info)
 {
     this.partitionInfo = info.partitionInfo;
     this.orderByInfo   = info.orderByInfo;
     this.distinctInfo  = info.distinctInfo;
 }
Exemple #3
0
 internal DataSetInfo()
 {
     this.partitionInfo = OnePartition;
     this.orderByInfo   = NoOrderBy;
     this.distinctInfo  = NoDistinct;
 }