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

SqlQueryCollection.AddRange(IEnumerable<SqlQuery>) Method

Appends a collection of SQL queries to the SqlQueryCollection.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v20.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.WindowsDesktop.DataAccess

Declaration

public void AddRange(
    IEnumerable<SqlQuery> items
)

Parameters

Name Type Description
items IEnumerable<SqlQuery>

A collection of SqlQuery objects to append to the collection.

Remarks

Objects are added to the end of the collection in the same order they have in the array.

See Also