예제 #1
0
        public void RemoveById(int id)
        {
            var loja = _context.Loja.FirstOrDefault(x => x.ID == id);

            _context.Remove(loja);
            _context.SaveChanges();
        }