0
How do I get the list of repeating items with the same fpId and eclId?
var lst = (from fp in FPIds
from et in ETIds
from ec in ECIds
join eclp in ECLP on ec equals eclp.ecId
join ecl in ECL on eclpId equals clId
select new {
fpId = fp,
etId = et,
ecId = ec,
eclId
}).ToList();
I recommend you do not shorten variable names, it leaves the code very confusing for those reading.
– riki481