Hi, I am trying to pass a list of integers into an HQL statement:
Code:
SELECT schedule
from BillableSchedule as schedule
where schedule.Id in :scheduleIdList
I have tried passing :scheduleIdList as an array of ints and also as a list. When I turn on SQL Profiler, I see the parameter is passed in as varbinary data. The documentation shows that this is supported:
Code:
from Eg.DomesticCat cat where cat.Name in ( 'Foo', 'Bar', 'Baz' )
Is there a way to do the same thing with a list of items as a parameter:
Code:
from Eg.DomesticCat cat where cat.Name in :fooBarList
Thanks!
Noel