android - Windows Azure Service Mobile get All data from table -


i need little bit of windows azure , query system.

i can data first row query

table.where().field("id").eq("1").execute().get(); 

but want of table data (about 50 rows).

is there query rows @ once?

you can skip where call , call execute on table directly:

table.execute().get(); 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -