I am having a mind-freeze here, but I cant seem to find the equivalent lambda syntax for -
string[] a = {"a","b","c"};
string[] b = {"1","2","3"};
var x = from a1 in a
from b1 in b
select new{a1, b1};
var x = a.SelectMany(a1=>b.Select(b1=>new {a1,b1}));
ReSharper says:
var x = a.SelectMany(a1 => b, (a1, b1) => new { a1, b1 });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With