biproberkay / PortalStore

.Net Core (3.1 ve üstü) Restful API Repository Pattern SOLID prensiplerine uygun Unit Test Entity Framework Core (CodeFirst)
1 stars 0 forks source link

BaseController sınıfında hangi endpointler olmalı? #16

Closed biproberkay closed 2 years ago

biproberkay commented 2 years ago

getall getbyid ... bir kere endpointlerin hepsine bir ad vermem gerekmiyor.

📌 rest apiye göre get post put delete HttpAttributeleri var. mümkün olduğunca bunların dışına çıkmamak gerekiyor.

bana neler genel olarak lazım olabilir?

biproberkay commented 2 years ago

BaseController class

method actions endpoint

:question: why Controller methods called as conroller actions?

All the public methods of the Controller class are called Action methods.

biproberkay commented 2 years ago

Controller Classının metodları ve metodların geri dönüş tipleri araştırması

📌 The IActionResult return type is appropriate when multiple ActionResult return types are possible in an action.1

📌return BadRequest(); is a shorthand form of return new BadRequestResult();