/// <summary> /// 删除一条数据 /// </summary> public bool Delete(int id) { return(dal.Delete(id)); }
public void Detele(int id) { _context.Delete(new News { Id = id }); }