How can I return constant text in projection list, Not sure if I am doing it right or not.
projectionList.Add(Projections.Property("This Year Issue Price").WithAlias(() => sProduct.PriceTitle));
This way I assume that I will get "This Year Issue Price" as columns value for PriceTitle. Doing it because this is dynamic and could be different name and value on conditions.
Thanks