Hello,
Is it possible to use an array of identity values (GUIDs in my case) as a filter for retrieving a collection from the database?
I’d like to do something like this:
ArrayList myIDs = new ArrayList();
myIDs.Add(“guid1”);
myIDs.Add(“guid2”);
MyCollection itemsToProcess = new MyCollection();
IPredicateExpression filter = new PredicateExpression(MessagesFields.RowGUID == myIDs);
itemsToProcess.GetMulti(filter);
The resulting query should look something like this:
Select *
From MyCollection
Where RowGUID in (‘guid1’, ‘guid2’)
Thank you in advance!!
Rick