Is it possible to pass the parameter after the period on a LINQ Query?
For example on this code:
objResultFinal = objResultFinal.OrderByDescending(x => x.[iwanttopassparameterhere]).ToList();
Is that possible? I want to declare after the "x." the string that I want to query.