1
Reply

Can you provide a Example of Cross Product Join in LINQ ?

Akash Varshney

Akash Varshney

9y
1.5k
0
Reply

    //Cross Product Join var players = new[] { "Tom", "Jay", "Mary" }.AsQueryable();IEnumerable query =from name1 in playersfrom name2 in playersselect name1 + " vs " + name2;query.Dump();