linq 指定的轉換無效


string newshopname = "淘寶" + itemname.Text;
                        string str_f = "account_name='" + newshopname + "'";
                        DataTable dt2 = dt.Select(str_f).CopyToDataTable();
                        dt2.Columns.Remove("account_name");
                        DevExpress.XtraCharts.Web.WebChartControl WCC = new DevExpress.XtraCharts.Web.WebChartControl();
                        var query = from q in dt2.AsEnumerable()
                                    group q by q.Field<int>("IsReturns") into r
                                    select new
                                    {
                                        _isreturn = r.Key,
                                        _count = r.Count()
                                    };


改成

string newshopname = "淘寶" + itemname.Text;
                        string str_f = "account_name='" + newshopname + "'";
                        DataTable dt2 = dt.Select(str_f).CopyToDataTable();
                        dt2.Columns.Remove("account_name");
                        DevExpress.XtraCharts.Web.WebChartControl WCC = new DevExpress.XtraCharts.Web.WebChartControl();
                        var query = from q in dt2.AsEnumerable()
                                    group q by q["IsReturns"] into r
                                    select new
                                    {
                                        _isreturn = r.Key,
                                        _count = r.Count()
                                    };

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM