I thougth that disposing a ConversationalScope object does the commit
of the transaction, but:

using (new ConversationalScope(conversation))  // start transaction
{
 
scheduleProcess.DeleteScheduleItem(schedulerControl.SelectedAppointments[0]);
} // do not commit

if I write conversation.Dispose();    perform commit

or

using (new ConversationalScope(conversation))  // start transaction
{
 
scheduleProcess.DeleteScheduleItem(schedulerControl.SelectedAppointments[0]);
     conversation.Restart();  // perform commit
}

I tried with all ConversationFlushMode option but nothing change.

What is my mistake?

--Alessandro

-- 
You received this message because you are subscribed to the Google Groups 
"Castle Project Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/castle-project-users?hl=en.

Reply via email to