Best way of databinding to a daragrid

  • Thread starter Thread starter Kivanç Karaca
  • Start date Start date
K

Kivanç Karaca

Hi all !
I want to ask you guys your opinions about the way you bind data to a grid.
I mean do you bind the dataset, datatable or a dataview? And do they
actually change anything?
Thanks
 
AFAIK, the ones you mentioned all end up doing much the same. You can use
DataSource and DataMember with a DataSet, or reference the DataTable or
DataView directly. However, you might consider using a DataReader for
performance if you don't need to actually create a DataSet.
 
Back
Top