I have followed this
http://blogs.msdn.com/b/ericlippert/archive/2010/06/28/computing-a-cartesian-product-with-linq.aspx
and created a dynamic linq query to compute cartesian product.
I have 10 array item, each has 100 item in it.
A[100]
B[100]
C[100]
.
.
.
J[100]
When I am trying to compute the cartesian product of my A to J array, I get outofmemoryexception.
I am sure somebody already might have faced similar issue. It would be great if you can provide me a solution for this issue.