Ejemplo n.º 1
0
        public bool NextResult()
        {
            if (_type == AdomdType.AnalysisServices)
            {
                return(_obj.NextResult());
            }
            else
            {
                bool f() => _objExcel.NextResult();

                return(f());
            }
        }
Ejemplo n.º 2
0
 public bool NextResult()
 {
     if (_type == AdomdType.AnalysisServices)
     {
         return(_obj.NextResult());
     }
     else
     {
         ExcelAdoMdConnections.ReturnDelegate <bool> f = delegate
         {
             return(_objExcel.NextResult());
         };
         return(f());
     }
 }