I have one dataset. I have create one DataView and I want to add only table
schema to the newly created dataView
how to do this
If you mean that you want to get a DataView for only one table in the
dataset, then use the overloaded dataview ctor which takes a datatable
as a parameter.
DataView dv = new DataView(dataTable);
Sijin Joseph
http://www.indiangeek.net
http://weblogs.asp.net/sjoseph
> I have one dataset. I have create one DataView and I want to add only table
> schema to the newly created dataView
> how to do this
Vidyanand Kulkarni - 15 Sep 2004 06:23 GMT
Thanks sijin
It works
> If you mean that you want to get a DataView for only one table in the
> dataset, then use the overloaded dataview ctor which takes a datatable
[quoted text clipped - 9 lines]
> > schema to the newly created dataView
> > how to do this