The following SQL
SELECT * FROM customers
converted to this in LINQ
var customers = from c in customers
select c;
Is their any good reasones why the from and select is swaped?
The only logical reason I can think of is for intellisens? For the intellesens to get resolved, it needs to know what it is querying (scope)?
Any other reasons why it was swaped?