0

我想从数据集中检索最后一行到第二行和第三行

var lastUploaded = ds.Tables["title"].AsEnumerable().OrderByDescending(r => r.Field<int>("video_id")).Take(3);
4

1 回答 1

0

以下答案给出第二行:

ds.Tables["title"].Rows[ds.tables["title"].rRows.count-2][" Column name here"].ToString();

第三行:

ds.Tables["title"].Rows[ds.tables["title"].rRows.count-3][" Column name here"].ToString(); 

等等...

于 2013-04-15T16:09:54.350 回答