Skip to main content

QueryParameterInternal(String, String, Type, Object) Constructor

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

Namespace: DevExpress.DataAccess.Wizard

Assembly: DevExpress.DataAccess.v23.2.dll

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

Declaration

public QueryParameterInternal(
    string queryName,
    string name,
    Type type,
    object value
)

Parameters

Name Type Description
queryName String

A String value, specifying the query name. This value is assigned to the QueryParameterInternal.QueryName property.

name String

A String value, specifying the parameter name. This value is assigned to the QueryParameterInternal.Name property.

type Type

A Type value, specifying the parameter type. This value is assigned to the QueryParameterInternal.Type property.

value Object

A Object value, specifying the parameter value. This value is assigned to the QueryParameterInternal.Value property.

See Also