コード例 #1
0
        public IActionResult DeleteFootballer(Guid footballerId)
        {
            var footballer = FootballerRepository.Find(footballerId);

            FootballerRepository.Delete(footballer);
            FootballerRepository.SaveChanges();
            context.Clients.All.SendAsync("refreshFootballers");
            return(RedirectToAction("index"));
        }