What is the fastest way to import prices in litium 7.4.2?
In 7.3.3 we fetched the entire pricelist with var pricelist = _priceListService.Get(data.PriceListId, true), then updated the price items, then saved with _priceListService.Update(priceList);
But priceListService.Get(data.PriceListId, true), is depricated in 7.4.2. In the upgrade we changed to use batch.Create(…), batch.Update(…), batch.Commit(), but this seems to be a lot slower.