CreateTableValuedParameterDataTables Method
The CreateTableValuedParameterDataTables method converts a POCO changeset into ADO.NET DataTable objects suitable for generated SQL Server table-valued parameters.
/// <summary>
/// Creates ADO.NET DataTables for generated Save stored procedures that accept SQL Server TVPs.
/// </summary>
public Dictionary<string, System.Data.DataTable> CreateTableValuedParameterDataTables(IDataSet changeset, bool changedRowsOnly = true)
Namespace: PocoDataSet.SqlServerDataAdapter
Assembly: PocoDataSet.SqlServerDataAdapter.dll
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);
Dictionary<string, System.Data.DataTable> adoTables = adapter.CreateTableValuedParameterDataTables(dataSet, false);
System.Data.DataTable adoTable = adoTables["HostedApplicationLayer"];
int rowCount = adoTable.Rows.Count;
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.