Below is a simple LINQ that you can use to filter the DataTable.
AsEnumerable() method to return the input type DataTable as IEnumerable.
-------------------------------------------------------------------------
Dim filteredTable As DataTable = (From n In dt.AsEnumerable()
Where n.Field(Of Int32)("id") = 1Select n).CopyToDataTable()
-------------------------------------------------------------------------
Feel free to leave your comments or suggestions. Thank you.