Exemple #1
0
 public static Expression FirstOrDefault(this Expression source, Type itemType)
 {
     return(StaticMethod.Info(() => Enumerable.FirstOrDefault <object>(null), itemType).Call(source));
 }
Exemple #2
0
 public static Expression ToList(this Expression source, Type itemType)
 {
     return(StaticMethod.Info(() => Enumerable.ToList <object>(null), itemType).Call(source));
 }