I am playing around with LinqPad4. This is my SQL Statement that returns 2 records, my equivalent Linq statement executed successfully, however it does not show any results.
select top 2 * from Nums
var testing = (from nums in Nums select new {nums.N}).Take(50);
Why??
Thanks & Regards,