Been trying to learn LinQJS from some while now by converting some old Linq-querys to LinqJs-query.
This is the Linq-query.
(from y in class1
join x in class2 on y.Id equals x.Name
group y by new { y.Date, x.Number } into xy
select new class3()
{
}).ToList();
This my current attempt on it(who's been rewritten many times). I think I just dont really understand the syntax.
var example = Enumerable.from(this.class1)
.join(
this.class2,
"y => y.Id",
"x => x.Name",
" "
)
.groupBy("x.Date", "y.Number")
.select(xy= new Class3(), { })
.ToArray();