Click here to Skip to main content
15,885,186 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: ASP.Net Core Web API Exception - Can't Find System.Data.Linq Pin
#realJSOP2-Nov-21 1:01
mve#realJSOP2-Nov-21 1:01 
QuestionSecuring A Web API Pin
Kevin Marois20-Sep-21 11:51
professionalKevin Marois20-Sep-21 11:51 
AnswerRe: Securing A Web API Pin
#realJSOP2-Nov-21 1:06
mve#realJSOP2-Nov-21 1:06 
GeneralRe: Securing A Web API Pin
Kevin Marois2-Nov-21 4:35
professionalKevin Marois2-Nov-21 4:35 
QuestionLaravel 8 how to add elements to navbar app.blade Pin
paradox0215-Sep-21 2:01
paradox0215-Sep-21 2:01 
QuestionSSL Certificate Pin
Kevin Marois26-Aug-21 7:23
professionalKevin Marois26-Aug-21 7:23 
AnswerRe: SSL Certificate Pin
Richard Deeming26-Aug-21 21:52
mveRichard Deeming26-Aug-21 21:52 
GeneralRe: SSL Certificate Pin
Kevin Marois20-Sep-21 9:23
professionalKevin Marois20-Sep-21 9:23 
GeneralRe: SSL Certificate Pin
Richard Deeming20-Sep-21 21:47
mveRichard Deeming20-Sep-21 21:47 
GeneralRe: SSL Certificate Pin
Kevin Marois21-Sep-21 4:22
professionalKevin Marois21-Sep-21 4:22 
GeneralRe: SSL Certificate Pin
Richard Deeming21-Sep-21 5:36
mveRichard Deeming21-Sep-21 5:36 
GeneralRe: SSL Certificate Pin
Kevin Marois21-Sep-21 6:02
professionalKevin Marois21-Sep-21 6:02 
GeneralRe: SSL Certificate Pin
Richard Deeming21-Sep-21 6:37
mveRichard Deeming21-Sep-21 6:37 
GeneralRe: SSL Certificate Pin
Kevin Marois21-Sep-21 6:53
professionalKevin Marois21-Sep-21 6:53 
GeneralRe: SSL Certificate Pin
SlothTheCoder29-Oct-21 15:11
professionalSlothTheCoder29-Oct-21 15:11 
QuestionAPI Controller Question Pin
Kevin Marois26-Aug-21 6:13
professionalKevin Marois26-Aug-21 6:13 
AnswerRe: API Controller Question Pin
Richard Deeming26-Aug-21 6:41
mveRichard Deeming26-Aug-21 6:41 
GeneralRe: API Controller Question Pin
Kevin Marois26-Aug-21 7:28
professionalKevin Marois26-Aug-21 7:28 
GeneralRe: API Controller Question Pin
Richard Deeming26-Aug-21 21:41
mveRichard Deeming26-Aug-21 21:41 
Kevin Marois wrote:
So to follow the REST standard, I would have to decorate each method with the Http Verbs?

Yes. But you'd probably want to do that anyway - for example, you don't want actions which modify the data to be available via GET requests.

Kevin Marois wrote:
How would this signature look in the API?

Depends on how you set up the routes. For example, if you don't have a RoutePrefix attribute on your controller:
C#
public class JobsController : _ApiControllerBase
{
    [HttpGet("api/projects/{projectId:int}/jobs")]
    public List<JobEntity> GetJobsForProject(int projectId) { ... }
}
However, my gut feeling is that this action would fit better as part of a ProjectsController:
C#
[RoutePrefix("api/projects")
public class ProjectsController : _ApiControllerBase
{
    [HttpGet("")]
    public IEnumerable<ProjectEntity> GetAllProjects() { ... }
    
    [HttpGet("{id:int}")]
    public ProjectEntity GetProject(int id) { ... }
    
    [HttpGet("{id:int}/jobs")]
    public IEnumerable<JobEntity> GetJobsForProject(int id) { ... }
    
    [HttpPost("")]
    public int AddProject([FromBody] ProjectEntity entity) { ... }
    
    [HttpPut("{id:int}")]
    public void UpdateProject([FromBody] ProjectEntity entity) { ... }
    
    [HttpDelete("{id:int}")]
    public void DeleteProject(int id) { ... }
}

Attribute Routing in ASP.NET Web API 2 | Microsoft Docs[^]



"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer

QuestionModal Question Pin
MekaC24-Aug-21 10:40
MekaC24-Aug-21 10:40 
Question.Net Framework Web API - Server Error Pin
Kevin Marois23-Aug-21 11:50
professionalKevin Marois23-Aug-21 11:50 
AnswerRe: .Net Framework Web API - Server Error Pin
Richard Deeming23-Aug-21 21:18
mveRichard Deeming23-Aug-21 21:18 
GeneralRe: .Net Framework Web API - Server Error Pin
Kevin Marois24-Aug-21 4:36
professionalKevin Marois24-Aug-21 4:36 
GeneralRe: .Net Framework Web API - Server Error Pin
Richard Deeming24-Aug-21 6:13
mveRichard Deeming24-Aug-21 6:13 
GeneralRe: .Net Framework Web API - Server Error Pin
Kevin Marois24-Aug-21 6:27
professionalKevin Marois24-Aug-21 6:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.