コード例 #1
0
 public bool DeleteGroupMarshalValidator(GroupMarshalValidator GMV)
 {
     try
     {
         if (GMV != null && string.IsNullOrEmpty(GMV.ProfileID))
         {
             if (base.LoadTableSilent(Constants.GroupMarshalValidatorTableName))
             {
                 TableOperation DeleteOperation = TableOperation.Delete(GMV);
                 EntityTable.Execute(DeleteOperation);
                 return(true);
             }
             return(false);
         }
         return(false);
     }
     catch { return(false); }
 }