VS2012からデータベースプロジェクトを作成し、広告カスタムタイプを作成しました
CREATE TYPE dbo.TypeProductCategoryTable AS TABLE
( ProductID int, CategoryID int )
この型を使用してストアド プロシージャを記述すると、コンパイル エラーが発生します。
sql71501 sql パラメーターには組み込み型への未解決の参照があります
手順
CREATE PROCEDURE [dbo].[usp_ProductCategory_Mapping]
@tvProdCat dbo.ProductCategoryTableType READONLY
AS
insert into tProductCategories(ProductId,CategoryId)
SELECT @tvProdCat
RETURN 0
これをどのように処理しますか?Visual Studio データベース プロジェクトでカスタム タイプを作成できますか