使用另一个列表中的值修改foreach循环中的列表

时间:2013-11-21 05:28:57

标签: c# list foreach

我循环遍历列表并将这些值插入另一个对象。但是我有另一个列表,如果inv.idinv.name匹配,我需要使用其他列表中的值更新amountqty。什么是最好的方法?

//loop through Invoices

 foreach (invoice inv in list1)
 {

//if id and name match my other list(list2) I need to replace inv.amount and inv.qty with the values from the other list (list2.amount, list2.qty)

InsertAdditionalInvoice(inv.ID, inv.name, inv.address, inv.lot, inv.order,   
inv.invoiceid, inv.amount, inv.qty);

 }
}

它没有更新第一个列表中的值。我有一个方法返回列表,然后使用以下代码调用它:

var list2 = GetInivoice2(); 

然后我在foreach循环中调用此列表如下:

var listtmp = list2.FirstOrDefault(o => o.ID == inv.ID && o.name == inv.name );
if (listtmp != null)
{
req.Quantity = Convert.ToDouble(listtmp.Quantity);

这里是返回列表的list方法(名称不同):

公开列表GetInvoice2()         {

        List<inv2> inv2s = new List<inv2>();
        Database db = DatabaseFactory.CreateDatabase("tmp");


        DbCommand cmd = db.GetStoredProcCommand("getinv2");


        using (IDataReader reader = db.ExecuteReader(cmd))
        {
            while (reader.Read())
            {
                inv2.Add(new inv2
                {
                    InvoiceID = Convert.ToInt32(reader["InvoiceID"]),
                    InvoiceName = reader["InvoiceName"].ToString(),
                    Quantity = Convert.ToDecimal(reader["Quantity"]),

                });
            }
        }
        return inv2;

    }

2 个答案:

答案 0 :(得分:1)

这个我认为

//if id and name match my other list(list2) I need to replace inv.amount and inv.qty with the values from the other list (list2.amount, list2.qty)
var q = list2.FirstOrDefault(o => o.ID == inv.ID && o.name == inv.name);
if (q != null)
{
    inv.amount = q.amount;
    inv.qty = q.qty;
}

在调用InsertAdditionalInvoice之前添加以上代码。我不确定这是否是最好的方法,但我通常这样做。

答案 1 :(得分:0)

直接解决方案:

var l2value=list2.FirstOrDefault(l=>l.id==inv.id)
if(l2value!=null){
    inv.amount=l2value.amount;
    Inv.qty=l2value.qty;
}