Hi
I have a serval inserts in different tabels wich i want in the same transaction, therefor I create a Transaction to add my entities to (This is selfServicing)
But Let say I have this T1 and T2 is related
...
T1Entity t1 = new T1Entity()
t1.text = 1;
T2Entity t1 = new T2Entity()
t2.text = 2;
t2.T1 = t1;
trasaction.Add(t2);
t2.Save(true);
....
Is it ok not to add the t1 to the transaction when using recursive save?
Thanks in reagards
Anders