Пример #1
0
 public decimal SumField(string whereExp, string sumExp)
 {
     try
     {
         using (var t = new AsycudaDocumentClient())
         {
             return(t.SumField(whereExp, sumExp));
         }
     }
     catch (FaultException <ValidationFault> e)
     {
         throw new Exception(e.Detail.Message, e.InnerException);
     }
     catch (Exception)
     {
         Debugger.Break();
         throw;
     }
 }