In my Sink Table Name, I have the below paremeter:
@item().name
but it is creating the table as xxxxx.csv
What can I do to get rid of the .csv portion of the itemname when creating the sink table parameter. I found that I need to use Split() but it didn't work for me:
Split(@item().name,".",1)
Please note that I can't use substring because the parameter will refer to different table names with different lengths. So my approach was to look at the as a separator and extract the characters before it as my table name.

