This question is locked. New answers and comments are not allowed.
Hi,
While sorting an property at second level of the object then I am getting error "Invalid property or field", Please check the below code as well attached screenshot, in the below code "Fund Type" and "Ticker" is working as expected but "Fund Name" is getting error while sorting, "Fund Type" and "Ticker" is at first level but "Fund Name" is at second level. Is any thing I am missing, please suggest.
Thanks
--Sasi
While sorting an property at second level of the object then I am getting error "Invalid property or field", Please check the below code as well attached screenshot, in the below code "Fund Type" and "Ticker" is working as expected but "Fund Name" is getting error while sorting, "Fund Type" and "Ticker" is at first level but "Fund Name" is at second level. Is any thing I am missing, please suggest.
investmentPerformance.Add(properties => properties.InvestmentInformation.InvestmentType)
.Title(
"Fund Type");
investmentPerformance.Add(properties => properties.InvestmentInformation.Investment.InvestmentLongName)
.Title(
"Fund Name");
investmentPerformance.Add(properties => properties.InvestmentInformation.Ticker)
.Title(
"Ticker");
Thanks
--Sasi