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

SqlQueryCollection.IndexOf(SqlQuery) Method

Returns the zero-based index of the specified SQL query in the collection.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public int IndexOf(
    SqlQuery item
)

Parameters

Name Type Description
item SqlQuery

A SqlQuery object to locate in the collection.

Returns

Type Description
Int32

An integer value, indicating the position of the specified query in the collection.

Remarks

If the specified item has not been found in the collection, this method returns -1.

See Also