Hello!
Develop custom simple plugin with data insertion, but this insertion take around 9 sec, i think this ins not normal, but why?
Service initialization:
IOrganizationServiceFactory factory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
service = (IOrganizationService)factory.CreateOrganizationService(context.UserId);Simple insertion:
SomeEntityModel newQuote = new SomeEntityModel(); newQuote.FieldA = "SomeData"; service.Create(newQuote);
But look at screenshot below, why so many calls fo simple instertion? Does it possible improove perfomance?







