Supponendo che SQL Server 2008 o versioni successive, in SQL Server, creare un tipo di tabella una volta:
CREATE TYPE dbo.ColumnBValues AS TABLE
(
ColumnB INT
);
Quindi una procedura memorizzata che accetta un tipo come input:
CREATE PROCEDURE dbo.whatever
@ColumnBValues dbo.ColumnBValues READONLY
AS
BEGIN
SET NOCOUNT ON;
SELECT A.* FROM dbo.TableA AS A
INNER JOIN @ColumnBValues AS c
ON A.ColumnB = c.ColumnB;
END
GO
Ora in C#, crea un DataTable e passalo come parametro alla stored procedure:
DataTable cbv = new DataTable();
cbv.Columns.Add(new DataColumn("ColumnB"));
// in a loop from a collection, presumably:
cbv.Rows.Add(someThing.someValue);
using (connectionObject)
{
SqlCommand cmd = new SqlCommand("dbo.whatever", connectionObject);
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter cbvParam = cmd.Parameters.AddWithValue("@ColumnBValues", cbv);
cbvParam.SqlDbType = SqlDbType.Structured;
//cmd.Execute...;
}
(Potresti voler rendere il tipo molto più generico, l'ho chiamato in modo specifico per chiarire cosa sta facendo.)