我知道哪些索引超出界限。当我调试时,我也明白为什么。基本上发生的事情是我在我的数据库上做一个过滤器来查找潜在/未决的记录。然后,我收集了一系列这些号码,将它们发送到另一台服务器,检查这些号码是否已经升级为销售。如果它已升级为销售,则服务器将使用新的销售订单ID和旧的待处理销售订单ID(SourceID)进行响应。然后,我在该列表上执行for循环,将其过滤掉特定的SourceID,并将SourceID更新为Sales Order ID并更改其他几个值。问题是,当我在第一个上使用该过滤器时,它会抛出一个超出范围的索引错误。我检查过滤器返回的结果,它说0.我发现有点奇怪,因为我从列表中取出了销售订单号,所以它应该在那里。所以我不知道这笔交易是什么。以下是引发错误的问题代码。它并不是一直都这样做。就像我今天早上运行代码一样,并没有抛出错误。但是昨晚它在我回家之前做了。
filter.RowFilter = string.Format("Stage = '{0}'", Potential.PotentialSale);
if (filter.Count > 0)
{
var Soids = new int[filter.Count];
Console.Write("Searching for Soids - (");
for (int i = 0; i < filter.Count; i++)
{
Console.Write(filter[i][1].ToString() + ",");
Soids[i] = (int)filter[i][1];
}
Console.WriteLine(")");
var pendingRecords = Server.GetSoldRecords(Soids);
var updateRecords = new NameValueCollection();
for (int i = 0; i < pendingRecords.Length; i++)
{
filter.RowFilter = "Soid = " + pendingRecords[i][1];
filter[0].Row["Soid"] = pendingRecords[i][0];
filter[0].Row["SourceId"] = pendingRecords[i][1];
filter[0].Row["Stage"] = Potential.ClosedWon;
var potentialXML = Potential.GetUpdatePotentialXML(filter[0].Row["Soid"].ToString(), filter[0].Row["Stage"].ToString());
updateRecords.Add(filter[0].Row["ZohoID"].ToString(), potentialXML);
}
如果我正在计算右边第17行是引发错误的错误。 pendingRecords是一个object [] []数组。 pendingRecords [i]是个人记录。 pendingRecords [i] [0]是新的销售订单ID(SOID),pendingRecords [i] [1]是旧的SOID(现在是SourceID)
对此有任何帮助吗?是因为我正在将SOID更改为新的SOID,并且过滤器会自动更新吗?我只是不知道
答案 0 :(得分:0)
好吧,我最终改变了它的工作方式,现在实际上它的分类更好了。由于我的表的结构被返回,我即将发布的代码有一堆硬编码的数字。对于那个很抱歉。从那时起我就学会了不这样做,但我现在正在研究一个不同的项目,并且当我必须改变程序时,我会改变它。但这是解决方案。
var potentials = Server.GetNewPotentials(); //loads all records from server
for (int i = 0; i < potentials.Length; i++)
{
var filter = AllPotentials.DefaultView;
var result1 = CheckSoidOrSource(potentials[i].Soid, true);
var result2 = CheckSoidOrSource(potentials[i].SourceID,false) ;
//This potential can't be found at all so let's add it to our table
if (result1+result2==0)
{
Logger.WriteLine("Found new record. Adding it to DataTable and sending it to Zoho");
AllPotentials.Add(potentials[i]);
filter.RowFilter = string.Format("Soid = '{0}'", potentials[i].SourceID);
var index = AllPotentials.Rows.IndexOf(filter[0].Row);
ZohoPoster posterInsert = new ZohoPoster(Zoho.Fields.Potentials, Zoho.Calls.insertRecords);
AllPotentials.Rows[index]["ZohoID"] = posterInsert.PostNewPotentialRecord(3, filter[0].Row);
}
//This potential is not found, but has a SourceId that matches a Soid of another record.
if (result1==0 && result2 == 1)
{
Logger.WriteLine("Found a record that needs to be updated on Zoho");
ZohoPoster posterUpdate = new ZohoPoster(Zoho.Fields.Potentials, Zoho.Calls.updateRecords);
filter.RowFilter = string.Format("Soid = '{0}'", potentials[i].SourceID);
var index = AllPotentials.Rows.IndexOf(filter[0].Row);
AllPotentials.Rows[index]["Soid"] = potentials[i].Soid;
AllPotentials.Rows[index]["SourceId"] = potentials[i].SourceID;
AllPotentials.Rows[index]["PotentialStage"] = potentials[i].PotentialStage;
AllPotentials.Rows[index]["UpdateRecord"] = true;
AllPotentials.Rows[index]["Amount"] = potentials[i].Amount;
AllPotentials.Rows[index]["ZohoID"] = posterUpdate.UpdatePotentialRecord(3, filter[0].Row);
}
}
AllPotentials.AcceptChanges();
}
private int CheckSoidOrSource(string Soid, bool checkSource)
{
var filter = AllPotentials.DefaultView;
if (checkSource)
filter.RowFilter = string.Format("Soid = '{0}' OR SourceId = '{1}'",Soid, Soid);
else
filter.RowFilter = string.Format("Soid = '{0}'", Soid);
return filter.Count;
}
基本上发生的事情是,当我以这种方式过滤时,我发现了一些关于我数据的信息。这两个结果只返回以下结果(0,0)(0,1)和(1,0)(0,0)表示该表中根本不存在该记录,因此我需要添加它。 (1,0)表示销售订单ID(Soid)与表中的另一个Soid匹配,因此它已经存在。最后(0,1)意味着Soid在这个表中不存在,但是我找到了一个记录,它有Soid作为它的来源......对我而言,这意味着将它作为源的那个已经从一个来源升级了销售的潜力,这反过来意味着我必须更新记录和Zoho。这对我的工作要少得多,因为现在我不必搜索赢得和丢失的记录,我只需要搜索丢失的记录。更少的代码相同的结果总是一件好事:)