ParseQueryT MethodsParse

The ParseQueryT generic type exposes the following members.

Methods

  NameDescription
Public methodCountAsync
Counts the number of objects that match this query.
Public methodCountAsync(CancellationToken)
Counts the number of objects that match this query.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFindAsync
Retrieves a list of ParseObjects that satisfy this query from Parse.
Public methodFindAsync(CancellationToken)
Retrieves a list of ParseObjects that satisfy this query from Parse.
Public methodFirstAsync
Retrieves at most one ParseObject that satisfies this query.
Public methodFirstAsync(CancellationToken)
Retrieves at most one ParseObject that satisfies this query.
Public methodFirstOrDefaultAsync
Retrieves at most one ParseObject that satisfies this query.
Public methodFirstOrDefaultAsync(CancellationToken)
Retrieves at most one ParseObject that satisfies this query.
Public methodGetAsync(String)
Constructs a ParseObject whose id is already known by fetching data from the server.
Public methodGetAsync(String, CancellationToken)
Constructs a ParseObject whose id is already known by fetching data from the server.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInclude
Include nested ParseObjects for the provided key. You can use dot notation to specify which fields in the included objects should also be fetched.
Public methodLimit
Controls the maximum number of results that are returned. Setting a negative limit denotes retrieval without a limit. Chaining multiple limits results in the last limit specified being used. The default limit is 100, with a maximum of 1000 results being returned at a time.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberOr
Constructs a query that is the or of the given queries.
Public methodOrderBy
Sorts the results in ascending order by the given key. This will override any existing ordering for the query.
Public methodOrderByDescending
Sorts the results in descending order by the given key. This will override any existing ordering for the query.
Public methodSelect
Restrict the fields of returned ParseObjects to only include the provided key. If this is called multiple times, then all of the keys specified in each of the calls will be included.
Public methodSkip
Skips a number of results before returning. This is useful for pagination of large queries. Chaining multiple skips together will cause more results to be skipped.
Public methodThenBy
Sorts the results in ascending order by the given key, after previous ordering has been applied. This method can only be called if there is already an OrderBy(String) or OrderByDescending(String) on this query.
Public methodThenByDescending
Sorts the results in descending order by the given key, after previous ordering has been applied. This method can only be called if there is already an OrderBy(String) or OrderByDescending(String) on this query.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWhereContainedInTIn
Adds a constraint to the query that requires a particular key's value to be contained in the provided list of values.
Public methodWhereContains
Adds a constraint for finding string values that contain a provided string. This will be slow for large data sets.
Public methodWhereContainsAllTIn
Add a constraint to the querey that requires a particular key's value to be a list containing all of the elements in the provided list of values.
Public methodWhereDoesNotExist
Adds a constraint for finding objects that do not contain a given key.
Public methodWhereDoesNotMatchesKeyInQueryTOther
Adds a constraint to the query that requires a particular key's value does not match any value for a key in the results of another ParseQuery.
Public methodWhereDoesNotMatchQueryTOther
Adds a constraint to the query that requires that a particular key's value does not match another ParseQuery. This only works on keys whose values are ParseObjects or lists of ParseObjects.
Public methodWhereEndsWith
Adds a constraint for finding string values that end with a provided string. This will be slow for large data sets.
Public methodWhereEqualTo
Adds a constraint to the query that requires a particular key's value to be equal to the provided value.
Public methodWhereExists
Adds a constraint for finding objects that contain a given key.
Public methodWhereGreaterThan
Adds a constraint to the query that requires a particular key's value to be greater than the provided value.
Public methodWhereGreaterThanOrEqualTo
Adds a constraint to the query that requires a particular key's value to be greater or equal to than the provided value.
Public methodWhereLessThan
Adds a constraint to the query that requires a particular key's value to be less than the provided value.
Public methodWhereLessThanOrEqualTo
Adds a constraint to the query that requires a particular key's value to be less than or equal to the provided value.
Public methodWhereMatches(String, String)
Adds a regular expression constraint for finding string values that match the provided regular expression. This may be slow for large data sets.
Public methodWhereMatches(String, Regex)
Adds a regular expression constraint for finding string values that match the provided regular expression. This may be slow for large data sets.
Public methodWhereMatches(String, String, String)
Adds a regular expression constraint for finding string values that match the provided regular expression. This may be slow for large data sets.
Public methodWhereMatches(String, Regex, String)
Adds a regular expression constraint for finding string values that match the provided regular expression. This may be slow for large data sets.
Public methodWhereMatchesKeyInQueryTOther
Adds a constraint to the query that requires a particular key's value to match a value for a key in the results of another ParseQuery.
Public methodWhereMatchesQueryTOther
Adds a constraint to the query that requires that a particular key's value matches another ParseQuery. This only works on keys whose values are ParseObjects or lists of ParseObjects.
Public methodWhereNear
Adds a proximity-based constraint for finding objects with keys whose GeoPoint values are near the given point.
Public methodWhereNotContainedInTIn
Adds a constraint to the query that requires a particular key's value to be contained in the provided list of values.
Public methodWhereNotEqualTo
Adds a constraint to the query that requires a particular key's value not to be equal to the provided value.
Public methodWhereStartsWith
Adds a constraint for finding string values that start with the provided string. This query will use the backend index, so it will be fast even with large data sets.
Public methodWhereWithinDistance
Adds a proximity-based constraint for finding objects with keys whose GeoPoint values are near the given point and within the maximum distance given.
Public methodWhereWithinGeoBox
Add a constraint to the query that requires a particular key's coordinates to be contained within a given rectangular geographic bounding box.
Top
Extension Methods

  NameDescription
Public Extension MethodJoinTOuter, TInner, TKey, TResult
Correlates the elements of two queries based on matching keys.
(Defined by ParseQueryExtensions.)
Public Extension MethodOrT
Constructs a query that is the or of the given queries.
(Defined by ParseExtensions.)
Public Extension MethodOrderByTSource, TSelector
Orders a query based upon the key selector provided.
(Defined by ParseQueryExtensions.)
Public Extension MethodOrderByDescendingTSource, TSelector
Orders a query based upon the key selector provided.
(Defined by ParseQueryExtensions.)
Public Extension MethodThenByTSource, TSelector
Performs a subsequent ordering of a query based upon the key selector provided.
(Defined by ParseQueryExtensions.)
Public Extension MethodThenByDescendingTSource, TSelector
Performs a subsequent ordering of a query based upon the key selector provided.
(Defined by ParseQueryExtensions.)
Public Extension MethodWhereTSource
Filters a query based upon the predicate provided.
(Defined by ParseQueryExtensions.)
Top
See Also

Reference