Can some body review this LINQ and let me know how I can get this result done,
Dim lnqVendors = From Rows As UltraGridRow In Me.grdiList.Rows _
Where Rows.Cells("CheckCol").Value = True _
Select Rows.Cells("PayeeFK").Value, Rows.Cells("PaymentDate").Value, Rows.Cells("PayeeAddressesFK").Value
What's the problem?
In the select Line only allow me to select one column instead of the three column that I need.