J
jrogers.sw
I am using an objectdatasource with a .Net 2.0 ASP page.
The SQL for the tableadapter needs to use the IN operator as in
WHERE job_id in (111, 222, 333, 444, 555)
Job_id is a DBType Decimal and ProviderType Number
I have set the default value for the parameter to be
19620,19610,19580,19550 for testing
However, .Net strips the , and turns it into one large number.
How do I specify that it is rather an array or list of numbers,
esentially passing an array of numbers to the parameter?
The SQL for the tableadapter needs to use the IN operator as in
WHERE job_id in (111, 222, 333, 444, 555)
Job_id is a DBType Decimal and ProviderType Number
I have set the default value for the parameter to be
19620,19610,19580,19550 for testing
However, .Net strips the , and turns it into one large number.
How do I specify that it is rather an array or list of numbers,
esentially passing an array of numbers to the parameter?