I created a User Defined Function with VB.NET and want to use that function in SQLServer. Everything seems to work fine.
Now I want to use an array as parameter. Is it possible?
Example of my test method (without parameters):
Partial Public Class UserDefinedFunctions
<Microsoft.SqlServer.Server.SqlFunction()> _
Public Shared Function TestFunction() As SqlString
' Add your code here
Return New SqlString("Hello World")
End Function
End Class
Can someone give me a working example or some ideas for a workaround?
Thanx