In a project with 350 objects in the EDMX entity model, my team has long expectations when the first request occurs and when the first salvation occurs.
When profiling a simple case that executes multiple queries and saves, a simple set of steps to run the query and save takes several minutes.
The first request takes 47% of the total time just to call the framework method that executes the request.
The first save takes 50% of the total time only in System.Data.Objects.ObjectContext.SaveChanges.
Are there good opportunities for increasing productivity - this could be a development time leak.
(As soon as the system goes into production, it is annoying at startup, but is not a problem during the current execution)
source
share