Code SnippetAnswer2:
thanks,
finally myself i solved the problem.
// for variable vallues
DataView.RowFilter =
"CustId IN ( "+ sb.ToString() +")";
here 'sb' is stringBuilder, it have multiple values seperated by commas.
or
// for constant values
DataView.RowFilter="CustId IN ( 10,20,30)";
NOTE : All the values are from same column.
smr
Answer3:
Examples