I have tried the following code, but nothing is displayed in datagridview.
Any Suggestions?
string strFilterOption = \"dtcolnPurchaseProductExpProductNo=
In case if someone experiencing a similar issue, the easiest way will be to convert the data row array back to datatable and then setting the grid view data source.
dgvProductExp.DataSource = dtPurchaseProductExp.Select(strFilterOption).CopyToDataTable();