Tried this :
myStructs = from MyObject s in MyObjects
join c in Categories on s.CategoryID equals c.Item1 && s.Stars equals c.Item2
select s;
but seems I can't wrote 2 condition at the join? Where am I wrong? On SQL this can be done as well...