.net 2.0 中按字段对数组进行排序
我有类 StatusesInvestmentRow (来自数据源),其中字段之一是 ModifiedDate
Investment table:
Id int PK;
ModifiedDate datetime;
如何按此日期对此数组进行排序?
我找到了 IComparable 的示例,但 StatusesInvestmentRow 具有 DataRow 类型,因此我认为这不是好方法。
我有这个,我无法更改它:
statInw = new GetAllInvestmentStatuses();
我想添加类似的内容:
var newestStatusInvestment = statInv.Sort(comparerByDate)[0];
I have class StatusesInvestmentRow (from dataSource) where one of the field is ModifiedDate
Investment table:
Id int PK;
ModifiedDate datetime;
How can I sort this arrayby this date?
I found example with IComparable but StatusesInvestmentRow has DataRow type so it is not good way I think.
I have this and I can't change this:
statInw = new GetAllInvestmentStatuses();
I want add something like:
var newestStatusInvestment = statInv.Sort(comparerByDate)[0];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上,您可以使用 DataTable 和 DataView 自己的排序和选择函数来执行此操作。
顺便说一句,您的标签提到了 .NET 2.0,但您使用的是
var
关键字?You can actually use DataTable's and DataView's own sorting and selecting functions to do this.
Btw, your tag mentions .NET 2.0 but you're using the
var
keyword?