LINQ OrderBy not ordering .. changing nothing .. why?

匿名 (未验证) 提交于 2019-12-03 00:44:02

问题:

Any idea why the LINQ OrderBy is not working in following code, (have no errors but method does not sort ...)

First my own type

public class IQLinksView     {         public int id { get; set; }         public int catid { get; set; }         public int? viewed {get;set;}         public string name {get;set;}         public string desc {get;set;}         public string url {get;set;}         public string pic {get;set;}         public string cat {get;set;}     } 

then query :

IQueryable newView =                from links in this.emContext.tbl_otherlinks               select new IQLinksView { id = links.pklinkid, catid =               links.tbl_catgeory.pkcategoryid, viewed = links.linkviewed, name = links.linkname,                desc = links.linkdesc, pic = links.linkpicture,   url = links.linkurl, cat =               links.tbl_catgeory.categoryname }; 

Untill here all fine :-), but then

newView.OrderBy(x => x.viewed); 

just changes nothing,... Page is loading results showing ... but no ordering ... sniff

i have Try with (creating a comparer object ... ):

newView.OrderBy(x => (Int32)x.viewed, new CompareIntegers()); 

same result, no ordering ...

I do have workarounds but just wondering what is missing ....

Any suggestions will be appreciated thanks a lot :-)

回答1:

Don't throw away the return value. The OrderBy extension method is does not mutate the input. Try:

newView = newView.OrderBy(x => x.viewed); 

There is no reason why that won't work, assuming the viewed value is correct. Also, make sure that OrderBy is after any operations (e.g. Distinct) which will ruin ordering.

Happy coding!



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!