Hi Ayende & Chris,
Using build 465.
I tried to create it as an index, but I don't think I have it quite
right.
Lets say I have a person with a few properties like name and a
property which is a collection of addresses.
I would like to output:
Oren Business Tel Aviv
Oren Home Ramat Gan
Chanan Home Hampton
Chanan Business Clark
Joe Home Tel Aviv
And of course query it so I can take only the one from Tel Aviv.
So I thought my query would be:
from p in Session.Query<Person>()
from l in m.Locations
select new MapLocationViewModel { Name = p.Name, Type=
l.type, Town= l.Town};
That gives me the error I said above (SelectMany). I also tried it as
an index, but I get back the person object, which is not what I
wanted. I am guessing it might have to do with Live Projections option
of the index?