Hi,
I have been trying to check duplicate cell values in a column before saving.
Using Linq works with normal windows grid but with synfusion doesn't work.
Dim distinctsrno = From row As DataGridViewRow In dataGridViewDetailSheet.Rows Where Not row.Cells(11).Value = "" Select CStr(row.Cells(11).Value) Distinct
getting error :
Error BC36593 Expression of type 'GridModelRowColOperations' is not queryable. Make sure you are not missing an assembly reference and/or namespace import for the LINQ provider.