I have a Datagridview and the Data Source is dtCustomer I just want to filter the content of grid view based on a search text. Itried the follow
Data Source
dtCustomer
dtCustomer.Rows.Cast().Select(dr => (string)dr["cust_Name"].Startswith("zzz")).ToList()