CreateTableValuedParameter Method

Overview

The CreateTableValuedParameter method creates a configured SQL Server structured parameter from a POCO IDataTable.

Declarations

/// <summary>
/// Creates a structured SQL parameter for a generated table-valued parameter type using POCO columns plus adapter metadata columns.
/// </summary>
public SqlParameter CreateTableValuedParameter(string parameterName, string typeName, IDataTable dataTable, bool changedRowsOnly = false)

/// <summary>
/// Creates a structured SQL parameter for a generated table-valued parameter type using the supplied SQL Server TVP schema.
/// </summary>
public SqlParameter CreateTableValuedParameter(string parameterName, string typeName, IDataTable dataTable, IEnumerable<SqlServerTableValuedParameterColumn> columns, bool changedRowsOnly = false)

Namespace and Assembly

Namespace: PocoDataSet.SqlServerDataAdapter
Assembly: PocoDataSet.SqlServerDataAdapter.dll

Usage Example

IDataSet dataSet = DataSetFactory.CreateDataSet();
IDataTable table = dataSet.AddNewTable("HostedApplicationLayer");
table.AddColumn("DomainName", DataTypeNames.STRING);
table.AddColumn("UseCaseName", DataTypeNames.STRING);
table.AddColumn("ApplicationLayerName", DataTypeNames.STRING);
table.AddColumn("Url", DataTypeNames.STRING);

IDataRow row = table.AddNewRow();
row["DomainName"] = "HR";
row["UseCaseName"] = "Accounting";
row["ApplicationLayerName"] = "DAL";
row["Url"] = "http://localhost:5075";

SqlDataAdapter adapter = new SqlDataAdapter(connectionString);
SqlParameter parameter = adapter.CreateTableValuedParameter("@HostedApplicationLayer", "dbo.HostedApplicationLayer", table);

 

Table of Content POCO DataSet API References SqlDataAdapter Members

 


Business Process Programming in .Net
© 2004–2026 Laskarzhevsky Software Inc.
Unless otherwise noted, the content of this website is licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0).
Code examples are provided under the MIT License.
You are free to share and adapt the material provided that appropriate credit is given and any modifications are clearly indicated.
The information provided on this website is for educational purposes only.
The author and publisher make no warranties regarding the completeness or suitability of the information and are not responsible for any damages resulting from its use.