Class SelectCommandBuilderParameter
Inheritance
System.Object
SelectCommandBuilderParameter
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.BusinessFoundation.Data.Sql
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 12.17.2Syntax
public class SelectCommandBuilderParameter
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. |
System.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. |