I am attempting to create a dynamic query using expression trees to match the following statement:...var items = data.Where(i => i.CoverageType == 2).Select(i => i.LimitSelected);
...I can create the where method and get a result from it; however, I canno...