Hi vignesh,
Here is a sample code where we execute multiple queries into one transaction:
In the code above we first execute two different SELECT queries in OQL which generate two different SQL queries for extracting the Orders and Customers from the database. After that we then edit some of the returned results in the "for" loop, add an additional record and call Transaction.Commit(). This further generates multiple UPDATE queries for all the edited "Order" objects(which we edited in the loop) and also an INSERT query for the newly created "Customer" instance.
Best wishes,
Zoran
the Telerik team