コード例 #1
0
 private bool CheckItem(string ExpressionString)
 {
     try
     {
         using (MetaDataQueryServiceClient _msc = new MetaDataQueryServiceClient())
         {
             _msc.TestComputeExpress(ExpressionString, TableDefine, ref queryString, ref resultDataType);
         }
     }
     catch (Exception e)
     {
         return(false);
     }
     return(true);
 }