This question is locked. New answers and comments are not allowed.
Is it possible to do like this?
I want to show Name1 when YEAR > 2005, Otherwise show Name2.
Please advise it is possible or not?
Thanks in advance.
.Columns(columns =>{ columns.Bound(o => o.YEAR); columns.Bound(o => o.YEAR > 2005 ? o.Name1 : o.Name2); columns.Bound(o => o.Address);})I want to show Name1 when YEAR > 2005, Otherwise show Name2.
Please advise it is possible or not?
Thanks in advance.