示例#1
0
 public virtual void DeleteByAttribute(string name, string value)
 {
     try
     {
         baseFacade.DeleteByAttribute(name, value);
     }
     catch (FacadeException fx)
     {
         throw new BOException("Can not delete any entity with condition " + name + " = " + value + ": " + fx.Message);
     }
 }