Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Lỗi code C# không lấy được dữ liệu từ SQL

10:38 13-08-2021 965 lượt xem 2 bình luận 12:48 14-08-2021

Hiện tại mình đang viết một đoạn code lấy dữ liệu từ SQL và xuất dữ liệu ra file exel, cụ thể như sau:

  • Xuất dữ liệu theo ngày (24 giờ).
  • Lấy dữ liệu trong sql theo giờ hoặc theo phút: Lấy dữ liệu trong vòng 1 giờ, hoặc 30 phút, hoặc 15 phút (thông qua biến HourSplits để xuất ra file exel.
  • Hiện tại định nghĩ trong C# là 24 giờ, thời gian trong SQL chạy từ 0 giờ đến 23 giờ.

Vấn đề đang gặp: Code chỉ lấy được dữ liệu từ 1 giờ đến 23h, còn khoảng thời gian từ 0 giờ đến 1 giờ đang không hiểu (không lấy được dữ liệu)

Mình xin trợ giúp từ các bạn!

Đây là code:

bool isToday = false;
                if (reportData.ReportDate.Date == DateTime.Now.Date)
                {
                    isToday = true;
                }

                double min = double.MaxValue;
                double max = double.MinValue;
                const int NO_OF_HOUR = 24;
                for (int j = 0; j < NO_OF_HOUR; j++)
                {
                    bool hasData = true;
                    if (isToday && j > reportData.RunningTime.Hour)
                    {
                        hasData = false;
                    }
                    if (hasData)
                    {
                        DateTime rowHour = new DateTime(reportData.ReportDate.Year, reportData.ReportDate.Month, reportData.ReportDate.Day, j, 0, 0).AddHours(1)
                            .AddHours(hourVar);

                        // Hour Splits
                        for (var k = 0; k < hourSplits; k++)    // hourSplits = 1 => 1h; hourSplits = 2 => 30 mins; hourSplits = 4 => 15 mins
                        {
                            var mins = 60f / hourSplits;
                            rowHour = rowHour.AddMinutes(mins * k);

                            var splitData = objectData.Where(row => row.ValueTime >= rowHour && row.ValueTime < rowHour.AddMinutes(mins))
                                .OrderBy(row => row.ValueTime)
                                .FirstOrDefault();

                            if (splitData != null)
                            {
                                double val = splitData.Value;
                                
                                ExcelLib.OpenXmlExcelUtil.UpdateCell(worksheetPart, (uint)(firstRow + j * hourSplits + k), colName, val.ToString(format), dataType);

                                Debug.WriteLine($"{colName}{(uint)(firstRow + j * hourSplits + k)}={val.ToString(format)}");

                                if (Math.Abs(val) < min)
                                {
                                    min = Math.Abs(val);
                                }
                                if (Math.Abs(val) > max)
                                {
                                    max = Math.Abs(val);
                                }
                            }
                            else
                            {
                                Console.WriteLine($"Empty {colName}{(uint)(firstRow + j * hourSplits + k)} ({j}, {k})");
                                ExcelLib.OpenXmlExcelUtil.UpdateCell(worksheetPart, (uint)(firstRow + j * hourSplits + k), colName, "0.00", dataType);
                            }
                        }
                       
                }
                if (max != double.MinValue)
                {
                    ExcelLib.OpenXmlExcelUtil.UpdateCell(worksheetPart, (uint)(firstRow + NO_OF_HOUR * hourSplits), colName, max.ToString(format), dataType);
                }
                else
                {
                    // let it empty
                    //ExcelLib.OpenXmlExcelUtil.UpdateCell(worksheetPart, (uint)(firstRow + NO_OF_HOUR), colName, "", dataType);
                }

                if (min != double.MaxValue)
                {
                    ExcelLib.OpenXmlExcelUtil.UpdateCell(worksheetPart, (uint)(firstRow + NO_OF_HOUR * hourSplits + 1), colName, min.ToString(format), dataType);
                }
                else
                {
                    // let it empty
                    //ExcelLib.OpenXmlExcelUtil.UpdateCell(worksheetPart, (uint)(firstRow + NO_OF_HOUR + 1), colName, "", dataType);
                }
            }

 

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 12:42 14-08-2021

dạng này mình làm luôn code trong SQL. dùng dateDiff là xong. thậm chí code C# cũng vậy. ngày trừ ngày là ra thời gian còn lại thôi bạn. bạn lấy 00:00:00 của ngày bạn muốn => nó là giờ thứ 24. trừ đi cái thời gian còn lại. kết quả là TimeSpan. từ kết quả đó so với 15' xem thằng đó lớn hơn hay không là ra

Cu Xin Author đã bình luận 12:40 14-08-2021

đựa code vào format code nhé bạn.

 

Câu hỏi mới nhất