S
Sudip_inn
Guest
var combo = from p in people.AsParallel()
from c in cars.AsParallel()
.Select(x => ExpensiveFunc(x));
again ExpensiveFunc(x) iterate in huge data and update global datatable
Can i use PLINQ with LINQ cross join when there is huge data ? does it impact the performance gain ?
if anything bad may occur then please give me a alert.
thanks
Continue reading...
from c in cars.AsParallel()
.Select(x => ExpensiveFunc(x));
again ExpensiveFunc(x) iterate in huge data and update global datatable
Can i use PLINQ with LINQ cross join when there is huge data ? does it impact the performance gain ?
if anything bad may occur then please give me a alert.
thanks
Continue reading...