My problem is that i have DataSet with Tables and i want to return values
'where DocumentType IN (@list)'
, but @list is like :
string.Join(",",DocTypes.List1);
I have tried to use it like
SELECT........ WHERE DocumentType IN (@list) (in DataSet table adapter wizard), but when im executing Fill method, have ann error:
adapter1.Fill(ds.allDocuments, string.Join(",",DocTypes.List1);
Parameter 2 should be int, not string. Declare also wouldnt work in dataset..
Any help?
