On Wed, May 2, 2018 at 4:12 PM, Cameron Hassler
wrote:
> I'm trying to execute a stored procedure on MSSQL Server that takes a
> single, table-valued parameter. The parameter itself is of a custom type
> "StringTable" defined like so:
>
> CREATE TYPE [dbo].[StringTable] AS TABLE([strValue] [nvarch
I'm trying to execute a stored procedure on MSSQL Server that takes a
single, table-valued parameter. The parameter itself is of a custom type
"StringTable" defined like so:
CREATE TYPE [dbo].[StringTable] AS TABLE([strValue] [nvarchar](max) NULL)
Is it possible to execute this procedure using