I've come across this linq query and just want to ask whatWhat would be the proper way to write itthis query with lambda syntax?
var palindromes = from i in Enumerable.Range(100, 9900)
from j in Enumerable.Range(100, 9900)
let product = (i * j)
where product.ToString() == new string(product.ToString().Reverse().ToArray())
orderby product
select product;