CreateTableValuedParameterFromSqlTypeAsync Method
The CreateTableValuedParameterFromSqlTypeAsync method is a compatibility wrapper around CreateTableValuedParameterAsync.
/// <summary>
/// Creates a structured SQL parameter for a generated table-valued parameter type by requesting the SQL type column schema.
/// Kept for compatibility with earlier adapter builds.
/// </summary>
public async Task<SqlParameter> CreateTableValuedParameterFromSqlTypeAsync(string parameterName, string typeName, IDataTable dataTable, bool changedRowsOnly = false)
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);
SqlParameter parameter = await adapter.CreateTableValuedParameterFromSqlTypeAsync("@HostedApplicationLayer", "dbo.HostedApplicationLayer", table, false).ConfigureAwait(false);
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.