plinq on large lists taking enormous time
问题 I have two in memory lists plays and consumers one having 15 mil objects and the other around 3 mil. the following are a few of queries i'm firing.. consumersn=consumers.AsParallel() .Where(w => plays.Any(x => x.consumerid == w.consumerid)) .ToList(); List<string> consumerids = plays.AsParallel() .Where(w => w.playyear == group_period.year && w.playmonth == group_period.month && w.sixteentile == group_period.group) .Select(c => c.consumerid) .ToList(); int groupcount = plays.AsParallel()