The following gives me "System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index"
var meta = new LinqMetaData();
var c = (from l in meta.Promotion.Where(o => o.PromoProductLink.Any() && o.Active == true) select l).ToList();
It works fine in LinqPAD (even though it's a little slow for some reason)
Driving me nuts
all help gladly received!