In ADO.NET how will you filter the columms in a table without using SQL Query

Questions by mudduswamy   answers by mudduswamy

Showing Answers 1 - 7 of 7 Answers

Guest

  • Jan 8th, 2007
 

datatable.select(field expression)

  Was this answer useful?  Yes

hiral

  • Feb 9th, 2007
 

In C#dataset.table[0].rows[index]['ColumnName']example ds1.Tables[0].Rows[i]["MileStone_ID"];

  Was this answer useful?  Yes

shireef adel

  • Aug 4th, 2007
 

using DataView object and specifying the selection criteria

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions