Hello,
My SQL CLR split function code (VB.NET) was as follows :
<SqlFunction()>
When I set the FillRowMethodName property of SqlFunctionAttribute attribute as follows, the exception is solved
<SqlFunction(FillRowMethodName:="FillRow", TableDefinition:="Value nvarchar(4000)")>
Note that I have also defined the table structure, I mean the table columns in order using the TableDefinition property.
Eralper
Kodyaz.com