I want to create a lambda expression dynamically for this:
(o => o.Year == year && o.CityCode == cityCode && o.Status == status) >
(o => o.Year == year && o.CityCode == cityCode && o.Status == status)
There is no method called Expression.AndAlso which can take 3 Expressions as arguments.
Please refer below links,
https://msdn.microsoft.com/en-us/library/bb353520(v=vs.110).aspx
https://msdn.microsoft.com/en-us/library/bb382914(v=vs.110).aspx