MobileServiceTable.skip function

Skips the specified number of rows in the query.

mobileServiceTable.skip(count);

Parameters

  • count
    Type: number

    The number of rows to skip when returning the result.

Example

This code defines a filtered query that returns the top 3 items, and then binds the results to a control.

todoTable.where({ complete: false })
    .take(3)
    .read()
    .done(function (results) {
        todoItems = new WinJS.Binding.List(results);
        listItems.winControl.itemDataSource = todoItems.dataSource;
    });

.NET Framework Equivalent

Skip

Requirements

Namespace

WindowsAzure.MobileServices

Library

MobileServices.js

See Also

Reference

MobileServiceTable object

Other Resources

How to use an HTML/JavaScript client for Azure Mobile Services
Refine Mobile Services queries with paging