I have a database that contains a list of Tasks. I am using VSTO to read from this database and create a new Microsoft Project out of it. The upper limit for the Tasks is 3000.
The problem is that the records in the database are in random order. Sure, they have a parent child relationship defined in the form of a primary-foreign key in the same table. However, there are 2 restrictions:
- I must read all the records in one go.
- The order in which the record is read can be completely random.
The 2nd issue is where the real problem happens. Since it is likely that I might get all the OutlineLevel = 1 records first, followed by some OutlineLevel = 5 records, then some Outline Level = 2 and so on and so forth (completely random).
Since the VSTO API is odd in the sense that doing ParentTask.OutlineChildren.Add(<Task>), will create a Child Task of that parent, but will add the TASK to the LAST row of the grid!
This forces me to recompute the IDs for each record that I encounter. With ID, I mean the row number in MS Project on which the record must go.
The problem with this is that if I recompute this for 3000 tasks it gets slower and slower. Towards the start, it is able to insert 30-40 tasks per seconds, but it takes 11 hours to process all 3000 tasks! (This is of course unacceptable).
Is there some API method that will do this quickly? Or is there another way of recomputing the ID for a child task.
- The code that computes the ID of the child tasks is iterative. It starts from the ID of the parent task and tries to compute what ID the child task will have based on the Sibling Number of the child task (
SiblingNumberis stored in a data structure that I built, which acts as a wrapper aroundMSProject.Task object).