How to create a DataView with DataTable?

SheoNarayan
Posted by SheoNarayan under C# category on | Views : 7772
Pass DataTable as parameter to the instance of DataView object.

eg.


DataTable dTable = FunctionToReturnDataTableObject()();
DataView dataView = new DataView(dTable );


Thanks

Comments or Responses

Login to post response