Hi
I am curious what is the difference between saving a graph of entities and saving each enitity in graph.
for example if we have N entities, they can be saved as this :
//start transaction
SaveEntitiy(entity1)
...
SaveEntitiy(entityN)
//commit transaction
or they can be grouped together in a graph of entities with root of ROOT and then saved as this :
//start transaction
SaveEntity(Root)
//commit transaction
What is the difference? which one is faster?