Ejemplo n.º 1
0
 public static IQueryable <T> Include <T, TProperty>(this IQueryable <T> source, Expression <Func <T, TProperty> > path)
 {
     if (IsInUnitTest)
     {
         return(source);
     }
     return(QE.Include(source, path));
 }