public void RemoveById(int id) { var loja = _context.Loja.FirstOrDefault(x => x.ID == id); _context.Remove(loja); _context.SaveChanges(); }