Share via


com.microsoft.store.partnercenter.models.query

[Some information relates to pre-released product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.]

TBD

  • BaseQuery
    The base class which all queries should derive from. This class does not support any query capabilities except for the token by default. Therefore, implementation classes will pick and choose what to support.

  • CountQuery
    A query that returns the number of entities that may optionally fit a filter.

  • IndexedQuery
    A query that supports pagination. Use this for huge datasets.

  • IQuery
    Represents a query on an entity. All different queries should implement this contract.

  • QueryFactory
    Creates new instances of IQuery objects.

  • QueryType
    Enumerates query types.

  • SeekOperation
    Specifies how to seek a query.

  • SeekQuery
    Represents a seek query. The seek query can be used to seek through sets of results using the given seek operation.

  • SimpleQuery
    A standard query that returns entities according to sort and filter options (Does not do paging).