Y
Hacker News
new
|
ask
|
show
|
jobs
by
deepsun
8 days ago
Linq took that from Hibernate in believe. But in general, I'd say almost all ORM and SQL-gen libraries have FROM first, because it's clearer for programmers.
1 comments
anonymars
8 days ago
Hibernate puts SELECT last if requesting only specific properties?
LINQ:
var query = from e in entities where e.property1 == value select e.property2;
link
LINQ: