This is designed to work with single page amoung other things.
If I'm listing data I do NOT want to select * unless I'm editing and even then only a single record EVER. Any design that SELECT * on a lot of records (i.e. greater than 1) BAD DESIGN.
In all other cases, select * is just a massive waste of database and bandwidth.
I strongly encourage you to put back Select because without it there is no point to what you're building with MVC.net 4 single pages view because all of the speed improvements using SPA will be flushed down the toilet without select.
John Galt
Member
30 Points
47 Posts
Re: OData Support
Mar 10, 2012 06:56 PM|LINK
Select is essential!
This is designed to work with single page amoung other things.
If I'm listing data I do NOT want to select * unless I'm editing and even then only a single record EVER. Any design that SELECT * on a lot of records (i.e. greater than 1) BAD DESIGN.
In all other cases, select * is just a massive waste of database and bandwidth.
I strongly encourage you to put back Select because without it there is no point to what you're building with MVC.net 4 single pages view because all of the speed improvements using SPA will be flushed down the toilet without select.