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
Post a Comment