![]() |
|
|
#1 |
|
Guest
Posts: n/a
|
Weird design decision in LinQ To SQL
I'm taking a look at LinQ to SQL and I'm mystified by a design
decision taken by the language design mavens. Take this simple snipple: var q = from c in db.Customers where c.City == "London" select c.CompanyName; Why is this not in the order that standard SQL takes - e.g. var q = select c.CompanyName from c in db.Customers where c.City == "London"; It Just Doesn't Make Sense. Edward |
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
| New To Site? | Need Help? |