我在这里有问题。我试图使用Parallel.foreach将我的数据表转换为列表对象。 像这样 。
public List<ProductList> GetProductList(DataTable table)
{
List<ProductList> list = new List<ProductList>();
Parallel.ForEach(table.AsEnumerable(), item =>
{
string sku = item["product_sku"].ToString();
//int skus = Convert.ToInt16(item["product_sku"]);
string price = item["product_price"].ToString();
string tweakerID = item["ID"].ToString();
string finalPrice = item["FinalPrice"].ToString();
list.Add(new ProductList() { SKU = sku, Price = price, ID = id, FinalPrice = finalPrice });
});
list.RemoveAll(item => item == null);
return list;
}
我有超过65000个产品行。 在此之后。列表中只添加了约63000种产品。 但结果不是修正号码。例如,我运行此代码的最后三次我有63202,64025,62920。每次都是一个新号码。
我也不例外。
答案 0 :(得分:6)
多数民众赞成因为List<T>
不安全。请尝试:ConcurrentBag<T>
。
ConcurentBag
存在于System.Collections.Concurrent
命名空间中,其中包含更多线程安全集合。
所有项目都已处理,但并非所有项目都已添加到列表中。原因是,当两个线程尝试在完全相同的时间添加不同的项时,list无法处理它,并且只保存其中一个。