3

我有一个存储过程来处理定义为的表的插入、更新和删除

CREATE TABLE [dbo].[TestTable](
    [Id] [int] PRIMARY KEY NOT NULL,
    [Data] [nvarchar](50) NOT NULL,
    [ChangeDate] [datetime] NULL)

与存储过程

CREATE PROCEDURE MergeTest
    @Testing TestTableType readonly
AS
BEGIN
    MERGE INTO Testing as Target
    USING (SELECT * FROM @Testing) AS SOURCE
        ON (Target.Id = Source.Id)
    WHEN MATCHED THEN
        UPDATE SET 
            Target.Data = Source.Data,
            Target.ChangeDate = Source.ChangeDate
    WHEN NOT MATCHED BY TARGET THEN
        INSERT (Data, ChangeDate)
        VALUES (Source.Data, Source.ChangeDate)
    WHEN NOT MATCHED BY SOURCE THEN
        DELETE;

    RETURN 0;
END

和 UDT 类型为

CREATE TYPE TestTableType AS TABLE(
    [Id] [int] PRIMARY KEY NOT NULL,
    [Data] [nvarchar](50) NOT NULL,
    [ChangeDate] [datetime] NULL)

我正在尝试使用此结构从 C# 进行批量插入等。使用以下代码可以工作:

using (SqlConnection connection = new SqlConnection(@"..."))
{
    connection.Open();

    DataTable DT = new DataTable();
    DT.Columns.Add("Id", typeof(int));
    DT.Columns.Add("Data", typeof(string));
    DT.Columns.Add("ChangeDate", typeof(DateTime));

    for (int i = 0; i < 100000; i++)
    {
        DT.AddTestRow((i + 1), (i + 1).ToString(), DateTime.Now);
    }

    using (SqlCommand command = new SqlCommand("MergeTest", connection))
    {
        command.CommandType = CommandType.StoredProcedure;
        command.Parameters.AddWithValue("@Testing", DT);
        command.ExecuteNonQuery();
    }
}

但是,当我更改线路时

DataTable DT = new DataTable();
DT.Columns.Add("Id", typeof(int));
DT.Columns.Add("Data", typeof(string));
DT.Columns.Add("ChangeDate", typeof(DateTime));

DataSet1.TestDataTable DT = new DataSet1.TestDataTable();

这是相同DataTable结构的强类型版本,我得到一个Argument Exception错误

不存在从对象类型 TestBulkInsertDataset.DataSet1+TestDataTable 到已知托管提供程序本机类型的映射。

有没有办法使用强类型DataTable作为用户定义的表类型参数?

4

2 回答 2

3

找到了答案。使用强类型数据表时,您必须指定参数的类型。参数行变为:

var testingparam = command.Parameters.AddWithValue("@Testing", DT);
testingparam.SqlDbType = SqlDbType.Structured;

然后一切正常。

于 2012-11-21T09:33:44.783 回答
1

你有没有尝试过这样的事情?

DataSet1.TestDataTable DT = new DataSet1.TestDataTable();

// Fill data table

DataTable DT1 = DT;  // DataSet1.TestDataTable should be a subclass of DataTable

using (SqlCommand command = new SqlCommand("MergeTest", connection))
{
    command.CommandType = CommandType.StoredProcedure;
    command.Parameters.AddWithValue("@Testing", DT1);
    command.ExecuteNonQuery();
}

如果类型化的数据集仍然是常规数据集和数据表的子类,我认为这会起作用。

ETA:既然那行不通,那这个怎么样?

DataSet DS1 = new DataSet();
DS1.Merge(DT, false, MissingSchemaAction.Add);

// etc.

command.Parameters.AddWithValue("@Testing", DS1.Tables[0]);

假设这有效(并且您可能必须摆弄 Merge 方法的重载才能获得所需的结果),您将在 DataSet 中获得一个 DataTable ,它具有 DT 的架构和数据DataSet1.TestDataTable,但将只是类型DataTable

于 2012-11-20T12:08:58.820 回答