Exemplo n.º 1
0
 /// <summary>
 /// 根据条件 删除实体
 /// </summary>
 /// <param name="doWhere"></param>
 /// <returns></returns>
 public int DelBySqlWhere(Expression <Func <T, bool> > doWhere)
 {
     try
     {
         return(CurrentRepository.DelBySqlWhere(doWhere));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }