public static IEnumerable<Episode> WhereTVMatch(this IEnumerable<Episode> source, TvMatch match) { return source.Where(Episode.EqualsMatchExpression(match).Compile()); }
public static IQueryable<Episode> WhereTVMatch(this IQueryable<Episode> source, TvMatch match) { return source.Where(Episode.EqualsMatchExpression(match)); }