Archives for Entity Framework

Multiple FROM statements in a LINQ expression

Multiple "from" statements  are like nested foreach statements. MSDN example:     var scoreQuery = from student in students                         from score in ;                           where score > 90                            select new {…
Continue Reading