我想从数据集中检索最后一行到第二行和第三行
var lastUploaded = ds.Tables["title"].AsEnumerable().OrderByDescending(r => r.Field<int>("video_id")).Take(3);
答案 0 :(得分: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();
等等......