bltoolkit
bltoolkit copied to clipboard
Linq provider doesn't recognize EnumerableQuery enumerations
var ids = new[] { 5 }.AsQueryable(); var query = db.MyEntity.Where(s => ids.Contains(s.Id));
If "ids" was a simple array, the query would work fine.