i don't find any groupJoin example in tests or other place. and i reference the F# query expression, write rxquery as follow:
rxquery {
for male in maleEntering do
groupJoin female in femaleEntering
on (maleEntering.Where(fun e -> e.Name = male.Name) = femaleExiting.Where(fun e -> female.Name = e.Name))
into maleEncounters
select (male.Name, maleEncounters)
}
and ide emerge error. error line is
groupJoin female in femaleEntering
on (maleEntering.Where(fun e -> e.Name = male.Name) = femaleExiting.Where(fun e -> female.Name = e.Name))
into maleEncounters
the message means that groupJoin has something wrong, in is unexpected.
and the query's method chain is:
i don't find any
groupJoin
example in tests or other place. and i reference the F# query expression, write rxquery as follow:and ide emerge error. error line is
the message means that
groupJoin
has something wrong,in
is unexpected. and the query's method chain is:and the result is correct. is the
groupJoin
clause syntax correct?