Class SelectCommandBuilderParameter
Inheritance
System.Object
SelectCommandBuilderParameter
Namespace: Mediachase.BusinessFoundation.Data.Sql
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0Syntax
public class SelectCommandBuilderParameter : Object
Constructors
SelectCommandBuilderParameter()
Initializes a new instance of the SelectCommandBuilderParameter class.
Declaration
public SelectCommandBuilderParameter()
SelectCommandBuilderParameter(String, SqlParameter[])
Initializes a new instance of the SelectCommandBuilderParameter class.
Declaration
public SelectCommandBuilderParameter(string query, params SqlParameter[] sqlParams)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | query | The query. |
| Microsoft.Data.SqlClient.SqlParameter[] | sqlParams | The SQL params. |
Properties
Parameters
Gets the parameters.
Declaration
public SqlParameterList Parameters { get; }
Property Value
| Type | Description |
|---|---|
| SqlParameterList | The parameters. |
Postfix
Declaration
public string Postfix { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Prefix
Gets or sets the sp body prefix.
Declaration
public string Prefix { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The sp body prefix. |
Query
Gets or sets the query.
Declaration
public string Query { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The query. |