按分组数据拆分列表

时间:2018-09-13 14:28:20

标签: c# postgresql datareader

我有一个要在dataTable上显示的产品记录的列表,这些记录按部门名称/ ID分组。在我返回的数据下面的图像中,不包括突出显示的行。我正在尝试实现图像中显示的内容-对于已经按部门(沙漠,文具,家庭)分组的每组产品,获取总计,部门名称(以及我删除以减少混乱的其他列)追加到列表中

enter image description here

我正在努力实现上述目标

这是我当前的代码/查询,它返回没有突出显示行的数据

List<SaleDetailViewModel> list = new List<SaleDetailViewModel>();

NpgsqlCommand query = new NpgsqlCommand
     ("SELECT  q_department.q_name, q_saledetail.q_code, q_saledetail.q_description, " +
     "SUM(q_quantity) AS qtysum,  " + //running total of q_quantity for the product in that department     
     "FROM q_saledetail " +                    
     "LEFT JOIN q_department ON (q_saledetail.q_departmentid = q_department.q_code ) " +     
     "GROUP BY " +
     "q_saledetail.q_departmentid, q_department.q_name, q_saledetail.q_description, q_saledetail.q_code " +
     "ORDER BY q_saledetail.q_departmentid "
     , connectToDB);

NpgsqlDataReader read = query.ExecuteReader();

while(read.Read())
{
     var reportData = new SaleDetailViewModel();

     reportData.departmentName = read["q_name"].ToString(); //department name
     reportData.q_description = read["q_description"].ToString(); //product DESCRIPTION
     reportData.q_code = read["q_code"].ToString(); //product BAR CODE
     reportData.sumOfQuantity = Convert.ToDecimal(read["qtysum"]); //sum of quantity sold for that product


     list.Add(reportData);
}

connectToDB.Close();
return list;

我现在的挑战是为每组产品添加部门分组的行数据,并将其追加到将要返回的列表中,即

//--
foreach(grouped dataset by department)
{
     //get the totals and heading for each set of data
     reportData.q_code = //insert department id
     reportData.q_description = //insert department name
     reportData.sumOfQuantity = // insert total for that department

     list.Add(reportData) //add that to the list that will be shown on view
}
//--

我可以使用read.GetString()获得分组数据的部门ID和代码。

string deptName = read.GetString(0);

我如何继续遍历dataReader并为每个整体集(如数量列)添加总计,并将其作为自己的一行添加到列表中?...从显示的图像中获取结果

试图解释得更好一点: 在我的while循环中,如何汇总每个产品部门组的集合并创建一行以添加到列表中。或者有更好的方法可以实现这一目标。

1 个答案:

答案 0 :(得分:1)

选项1 :SQL和联合。

 SELECT  
    q_department.q_name,
    q_saledetail.q_code, 
    q_saledetail.q_description, 
     SUM(q_quantity) AS qtysum, --running total of q_quantity for the product in that department     
     FROM q_saledetail 
     LEFT JOIN q_department ON (q_saledetail.q_departmentid = q_department.q_code ) 
     GROUP BY 
     q_saledetail.q_departmentid, q_department.q_name, q_saledetail.q_description, q_saledetail.q_code


 UNION

 SELECT 
    q_department.q_name,
    '',
    '',
    sum(q_quantity)
    FROM q_saledetail 
     LEFT JOIN q_department ON (q_saledetail.q_departmentid = q_department.q_code ) 
    GROUP BY 
     q_saledetail.q_departmentid, q_department.q_name

     ORDER BY q_saledetail.q_departmentid 

通过从q_saledetail列表中删除一些标识不同group by的字段,求和函数将对所有部门求和,而不是将求和分解。

对不起,但我不记得确切地使用联合声明进行排序的方式,但是我知道您只能订购 在一个位置,最后一个或第一个语句,或带有从联合中选择的外部查询。

现在您的数据中将包含每个部门的“总计”行,这些行是 “总计”行,因为q_code或q_description字段为空。然后,您可以按部门然后按代码(asc或desc)对数据集进行排序,以使空代码字段位于该部门组的末尾并像这样显示。

选项2 :Linq和一些手动代码起作用

List<SaleDetailViewModel> list = new List<SaleDetailViewModel>();

while(read.Read())
{
    ... //Your mapping code
     list.Add(reportData);
}
var groupedList = list.GroupBy(x => x.departmentName);

哪个会给你一个IEnumerable<IGrouping<string, SaleDetailViewModel>

这就是您现在的数据,按充当密钥的每个部门的名称分组 现在,您将遍历groupedList,并将该IGrouping的值加起来。

foreach(var group in groupedList)
{
    var total = 0;
    foreach(var saledetail in group)
    {
        total += saledetail.sumOfQuantity;
    }


}

然后,您只需要添加逻辑即可按照这些组的顺序将其添加到列表/数据表中。

希望这会有所帮助。