New SQL Server project templates for VS2015 (Create CLR Table Function.sql)
1: CREATE FUNCTION $SchemaQualifiedObjectName$
2: (
3: @param1 int,
4: @param2 char(5)
5: )
6: RETURNS TABLE
7: (
8: c1 int,
9: c2 char(5)
10: )
11: AS EXTERNAL NAME $SomeAssembly$.$SomeType$.$SomeMethod$
Comments (
)
Link to this page:
//www.vb-net.com/VS2015-SQL-Server-Project-Templates/Create-CLR-Table-Function-sql.htm
|