I am trying to create a CLR UDF that takes in a string value seperated like "Mike|John|Smith". In the UDF I parse out the values and return them in a DataTable. The C# code builds fine and I can create the assembly in SQL pointing to the DLL without a problem.
Problem comes in when I am trying, according to this source, to tell SQL Server how to match up a Transact SQL request with a CLR function. http://www.setfocus.com/technicalarticles/clrfunctionforsqlserver_2.aspx
or if I even have to do that? Basically I want to take in a string, parse out the seperated values and put them in a DB Table with 3 different columns, FN, MN, LN. using a CLR UDF.