Skip to main content
A newer version of this page is available. .

IObjectSpace.GetObjectsCount(Type, CriteriaOperator) Method

Returns the number of objects specified.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

int GetObjectsCount(
    Type objectType,
    CriteriaOperator criteria
)

Parameters

Name Type Description
objectType Type

A Type object that identifies the type of objects against which the calculation will be performed.

criteria CriteriaOperator

The CriteriaOperator that specifies the criteria for object selection in the database.

Returns

Type Description
Int32

An integer value that is the count of persistent objects that satisfy the specified criteria.

Remarks

This method is intended to calculate the number of persistent objects in the database. For instance, this method is used before retrieving objects for the Lookup Property Editor. If there are more than the specified value, the Find editor is available.

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetObjectsCount(Type, CriteriaOperator) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also