CERATE PROCEDURE SelectListValue
( @ids [dbo].[TableUniqueIdentifierType] readonly )
AS
BEGIN
SELECT * FROM @ids
END
CREATE TYPE [dbo].[TableUniqueIdentifierType] AS TABLE(
[ID] [uniqueidentifier] NOT NULL
)
[assembly: MyCustomAssemblyAttribute("This is a custom attribute.")]