Skip to main content

StoredProcQuery(String, String, IEnumerable<QueryParameter>) Constructor

Initializes a new instance of the StoredProcQuery class with the specified settings.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public StoredProcQuery(
    string queryName,
    string storedProcName,
    IEnumerable<QueryParameter> parameters
)

Parameters

Name Type Description
queryName String

A String value. This value is assigned to the SqlQuery.Name property.

storedProcName String

A String value. This value is assigned to the StoredProcQuery.StoredProcName property.

parameters IEnumerable<QueryParameter>

A collection of QueryParameter objects. This value is assigned to the SqlQuery.Parameters property.

See Also