I have public class X { public List ListY { get; set; } }
public class Y { public Y();
public decimal Amount { get; set; }
}
I am showing the value of Amount in the grid. How to sort on this column. Is there a way to access this column to apply sort?
Thanks in advance Upendra