Like the title says, is it some way to make this statemant work (using InMemoryAdapter):
Database.Open().MySchema.MyTextResource.FindAllByX((IEnumerable<string>)myVariable);
IT returns 0 rows now, but if i do
Database.Open().MySchema.MyTextResource.FindAllByX(((IEnumerable<string>)myVariable).First());
It return 1, so it matches the data, its the IEnumerable part that messes up.