Linked Questions

Popular Questions

How is LINQ compiled into the CIL?

Asked by At

For example:

var query = from c in db.Cars select c;
foreach(Car aCar in query)
{
     Console.WriteLine(aCar.Name);
}

How would this translate once it is compiled? What happens behind the scenes?

Related Questions