Ejemplo n.º 1
0
 public static IEnumerable<Episode> WhereTVMatch(this IEnumerable<Episode> source, TvMatch match)
 {
     return source.Where(Episode.EqualsMatchExpression(match).Compile());
 }
Ejemplo n.º 2
0
 public static IQueryable<Episode> WhereTVMatch(this IQueryable<Episode> source, TvMatch match)
 {
     return source.Where(Episode.EqualsMatchExpression(match));
 }