我不熟悉使用C#和数据库。
我需要在迭代时迭代数据表(包含在数据集中),我可能需要将当前行的值与前一行或下一行的值进行比较。
我目前正在迭代:
foreach(DataRow dr in ds.Tables["Invoices"].Rows)
{
//Check if invoice id is equal to invoice id from previous/next row
}
我能想到的一种方法是保持“prev”变量来存储旧值并进行比较和更新,但我想看看DataTable是否提供了任何内置选项。
谢谢, 凯文
答案 0 :(得分:5)
for( int i = 0; i < ds.Tables["Invoices"].Rows.Count; i++ )
{
if( i > 0 )
{
// Compare with previous row using index
if( ds.Tables["Invoices"].Rows[i]["Amount"] > ds.Tables["Invoices"].Rows[i - 1]["Amount"])
{}
}
if( i < ds.Tables["Invoices"].Rows.Count - 1 )
{
if( ds.Tables["Invoices"].Rows[i]["Amount"] > ds.Tables["Invoices"].Rows[i + 1]["Amount"])
{}
}
}
答案 1 :(得分:1)
如果您需要随机访问,请不要使用foreach
,而应使用带索引的普通联合for
循环。