Save data in bulk.
Posted
by Muhammad Kashif Nadeem
on Stack Overflow
See other posts from Stack Overflow
or by Muhammad Kashif Nadeem
Published on 2010-02-26T06:41:54Z
Indexed on
2010/04/09
18:43 UTC
Read the original article
Hit count: 470
I have a window having multiple tabs. Each tab having different grids. I want to save all changes on any tab on any grid in bulk. I mean I have one save button which will save all changes in any grid on any tab.
I think DataTables will work fine here.
Can you suggest me that it is good to use DataTables to ADD/Edit data and save data in bulk using these DataTables OR is there any better way to achieve this.
My DAL is generated from LLBLGen Pro (ORM) but you are open to suggest me a solution.
Thanks.
Edit: I am using Telerik controls so I can get all data in DataTable like
DataTable dtProducts = this.radGridView1.DataSource as DataTable;
© Stack Overflow or respective owner