程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> At least one object must implement IComparable,shemustbeatleast

At least one object must implement IComparable,shemustbeatleast

編輯:C#入門知識

At least one object must implement IComparable,shemustbeatleast


中文:必須至少有一個對象實現 IComparable。

序列排序時報這個錯誤

lstReports.OrderBy(r => new { r.DepartmentName, r.ReportNo }).ToList(); //error occured

在LINQ to SQL/Entity中可以這麼用,LINQ 2 Object 不能這麼用,因為 new { r.DepartmentName, r.ReportNo } 這個匿名對象沒有實現IComparable接口,也無法實現這個接口

 

其實多字段排序用 ThenBy/ThenByDescending 就可以:

lstReports.OrderBy(r => r.DepartmentName).ThenBy(r => r.ReportNo).ToList();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved