logoalt Hacker News

localuser13today at 1:05 AM1 replyview on HN

I think this notation is superior, because of syntax completion - get_name(user.id) can be syntax completed by IDE, (user.id)get_name can't. Just like "SELECT id, name FROM users" would be better of as "FROM users SELECT id, name" (LINQ in C# fixed this mistake, and most modern query languages do too).


Replies

borskitoday at 1:08 AM

…if you’re typing from left to right. :)