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

SqlQueryCollection.Item[String] Property

Provides access to an individual item in the collection by its name.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public SqlQuery this[string name] { get; set; }

Parameters

Name Type Description
name String

A String value, specifying the query name.

Property Value

Type Description
SqlQuery

A SqlQuery object.

Remarks

Note that if the query with the specified name is not found, a ArgumentOutOfRangeException will be thrown.

See Also