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

QueryNodeCollection.Item[String] Property

Gets or sets the query with the specified name.

Namespace: DevExpress.DataAccess.DataFederation

Assembly: DevExpress.DataAccess.v19.1.dll

Declaration

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

Parameters

Name Type Description
name String

The query name.

Property Value

Type Description
QueryNode

A query with the specified name.

Remarks

You can use this property to replace a query with the specified name with another query.

If the specified name does not exist in the collection, an exception is thrown.

See Also