I was wondering how i compared to an array of ids in EF1.0
I know in EF4.0 Beta 1 there is a contains methods so it would look something like this
int[] associationIds = GetAssociationIds();
from c in Associations where c.AssociationId.Contains(associationIds) select c;
But how do you do the equivalent in EF1.0