从 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 数据库项目上创建自定义类型吗