Hi, I'm trying to save Dynamic data with list of addresses.
EPiServerDataStore(AutomaticallyCreateStore = true, AutomaticallyRemapStore = true)]
public class AddressData : IDynamicData
{
public Identity Id { get; set; }
public IList Addresses { get; set; }
}
Everything goes fine and I get no exceptions. When it hits DynamicDataStore.Save(addressData), it just stays there. "The job is running" I've waited more than 15 minutes for it to finish, but it doesn't.
Any suggetions, why it's getting stuck? Or what could be the problem? Using EPiServer CMS 8.11
I've figured that it doesn't get stuck. It nicely handles importing data. But it just takes a lot time. I've tried importing a list with 10 000 rows and it takes approximately 2.5 minutes to complete.
Hi,
I'm trying to save Dynamic data with list of addresses.
Everything goes fine and I get no exceptions. When it hits DynamicDataStore.Save(addressData), it just stays there. "The job is running"
I've waited more than 15 minutes for it to finish, but it doesn't.
Any suggetions, why it's getting stuck? Or what could be the problem?
Using EPiServer CMS 8.11
Regards,
A