I would like to send a List<int>
from my C# app as a parameter to a stored procedure in my SQL server database.
Are there any other way than parsing the List<int>
in a string ? I tried with a User-Defined Table Type, but unfortunately entity framework doesn't support this type.
Thanks in advance.