var results = session.Query<City, CityTheaters>()
.AsProjection<CityTheaters.Result>()
.ToList();
Intellisense does not give me .AsProjection option .. hence its not recognized. What am I missing? Thanks for the help.
using Raven.Client.Linq;