Here's the C#/Linq:
Fbc_tickets.GroupBy(t => t.Fbt_household_id)
LinqPad tells me this is being translated into (MySQL):
SELECT t0.fbt_household_id
FROM fbc_ticket AS t0
GROUP BY t0.fbt_household_id
SELECT t0.fbc_ticket_id, t0.fbt_client_id, ...
FROM fbc_ticket AS t0
WHERE ((t0.fbt_household_id IS NULL AND @n0 IS NULL) OR (t0.fbt_household_id = @n0))
-- n0 = [1]
SELECT t0.fbc_ticket_id, t0.fbt_client_id, ...
FROM fbc_ticket AS t0
WHERE ((t0.fbt_household_id IS NULL AND @n0 IS NULL) OR (t0.fbt_household_id = @n0))
-- n0 = [2]
...
Why is it generating all these queries? I'd expect something more akin to
SELECT * FROM fbc_ticket GROUP BY fbt_household_id
And that's it...
fbt_household_id
is an unsigned int and non-nullable.