AI OnAI Off
Maybe try the batch update as described here:
http://world.episerver.com/Blogs/Jonas-Bergqvist/Dates/2013/12/Batch-update-with-lambda-expression-in-DDS-EPiServer-75/
but i cant use that updating DDS object containing a generic list property...
Well thats what i kind of need doing.. modify objects in my generic list withs values and then update the whole list in dynamic datastore.. where mypropertybag["myitem"] is my genericlist i want to update. .
i guess the above only supports updating single types as stated in the article?
Hi,
Im have some performance issue updating items in dynamicdatastore.
I have around 2000 items in DDS and update one of them by simply setting the new value to
mypropertybag["myitem"] = newiten
store.save(mypropertybag)
The above takes really long time, this wasn´t a issue when i only had 20-30 items in the store..
Is there a better/faster way updating items not using propertybag?
//Pawel