Gopi

Gopi

  • 1.4k
  • 279
  • 15.2k

why we can not use function name like this?

Dec 21 2022 9:50 AM

When I'm use the function name like this the controller is not even hit why? But its working when I'm using like this GetAll(int id)

 public IActionResult GetAllAsync(int id)
        {
            
            return View();
        }     


Answers (2)