在可能超出范围时插入 sql 数据库

Inserting in sql Database while maybe out of range

我有一个问题。我正在尝试将一些值插入到 mySql 数据库中,但我遇到了一个小问题。

        for (int i = 0; i < Chauffeurlijst.Count; i++)
        {
            db.Insert("Insert into route (Voertuigen_ID,Chauffeurs_ID,Planning_ID) VALUES(@voertuigid,@chauffeurid,@planningid", new List<KeyValuePair<string, object>>
        {

            new KeyValuePair<string, object>("@voertuigid", Voertuigenlijst[i].ID),
            new KeyValuePair<string, object>("@chauffeurid", Chauffeurlijst[i].ID),
            new KeyValuePair<string, object>("@planningid", planning.ID)
        });
        }

我有两个值得注意的变量:voertuigenlijst(voertuig 列表)和 chauffeurlijst(司机列表)但问题是 Voertuigenlijst 的计数可能小于 Chauffeurlijst 的计数。也可以是一样的。当 chauffeurlijst 较小时,程序当然会崩溃,因为 voertuigen 列表中的最后一项已经分配。我想做的是当 voertuigenlijst[i] 不再存在时我想做 i-1。这个问题有好的解决办法吗?

您可以通过使用另一个局部变量来确定 Voertuigenlijst 的索引来执行此操作。基本上,您要检查索引是否在您的范围内。如果不是,则使用列表中的最后一个索引。例如--

for (int i = 0; i < Chauffeurlijst.Count; i++)
{
    var j = i < Voertuigenlijst.Count ? i : Voertuigenlijst.Count - 1;
    db.Insert("Insert into route (Voertuigen_ID,Chauffeurs_ID,Planning_ID) VALUES(@voertuigid,@chauffeurid,@planningid",
        new List<KeyValuePair<string, object>>
        {
            new KeyValuePair<string, object>("@voertuigid", Voertuigenlijst[j].ID),
            new KeyValuePair<string, object>("@chauffeurid", Chauffeurlijst[i].ID),
            new KeyValuePair<string, object>("@planningid", planning.ID)
        });
}

如果 Chauffeurlijst.Count > Voertuigenlijst.Count,这将使用列表中的最后一个 Voertuig。但是,此代码不处理 Voertuigenlijst.Count > Chauffeurlijst.Count 的情况。不过,我相信您可以使用此示例找到一个好的解决方案。您可能还想处理一个为空的情况。