In this article, I am going to discuss Optional Parameters in Web API Attribute Routing with some examples. Please read our previous article before proceeding to this article as we are going to work with the same example that we started in the Web API Attribute Routing article where we discussed the following things.
You can make a URI parameter as optional by adding a question mark (“?”) to the route parameter. If you make a route parameter as optional then you must specify a default value by using parameter = value for the method parameter.
We are going to work with the same example that we created in our last article. In our last article, we use the following Student Model
Along with we modify the WebApiConfig class as shown below.
Let’s modify the Student Controller as shown below.
This is almost the same as the previous example, but there is a slight difference in the behavior when the default value is applied.
In the first example (“{stdid?}”), here the default value 1 is directly assigned to the action method parameter, so the method parameter will have this value exactly.
In the second example (“{stdid=1}”), the default value “1” assigned to the method parameter through the model-binding process. The default model-binder in Web API will convert the value “1” to the numeric value 1.
In most of the cases, unless you have custom model binders in your pipeline, the two forms will be equivalent.
In the next article, I am going to discuss Route Prefix in Web API Attribute Routing. Here, in this article, I try to explain the Optional Parameters in Web API Attribute Routing step by step with some examples. I hope this Optional parameter in the Web API Attribute Routing article will help you with your need. I would like to have your feedback. Please post your feedback, question, or comments about this article.
Summary:
I Hope this post will be helpful to understand the concept of Optional Parameters in Web API Attribute Routing
Please share this post with your friends and colleagues.
For any queries please post a comment below.
Happy Coding 😉
- Why we need attribute routing?
- What is Attribute Routing?
- How to Implement Attribute Routing?
- What are the advantages of using Attribute Routing?
You can make a URI parameter as optional by adding a question mark (“?”) to the route parameter. If you make a route parameter as optional then you must specify a default value by using parameter = value for the method parameter.
We are going to work with the same example that we created in our last article. In our last article, we use the following Student Model
Along with we modify the WebApiConfig class as shown below.
Let’s modify the Student Controller as shown below.
namespace AttributeRoutingInWEBAPI.Controllers { public class StudentsController : ApiController { static List<Student> students = new List<Student>() { new Student() { Id = 1, Name = "Pranaya" }, new Student() { Id = 2, Name = "Priyanka" }, new Student() { Id = 3, Name = "Anurag" }, new Student() { Id = 4, Name = "Sambit" } }; // Optional URI Parameter with default value // URL: /api/students // URL: /api/students/1 [Route("api/students/{stdid:int?}")] public Student GetBooksByID(int stdid = 1) { return students.FirstOrDefault(s => s.Id == stdid); } } }In the above example, /api/students and /api/students/1 return the same resource. Alternatively, you can also specify a default value inside the route template as shown in the below image.
This is almost the same as the previous example, but there is a slight difference in the behavior when the default value is applied.
In the first example (“{stdid?}”), here the default value 1 is directly assigned to the action method parameter, so the method parameter will have this value exactly.
In the second example (“{stdid=1}”), the default value “1” assigned to the method parameter through the model-binding process. The default model-binder in Web API will convert the value “1” to the numeric value 1.
In most of the cases, unless you have custom model binders in your pipeline, the two forms will be equivalent.
In the next article, I am going to discuss Route Prefix in Web API Attribute Routing. Here, in this article, I try to explain the Optional Parameters in Web API Attribute Routing step by step with some examples. I hope this Optional parameter in the Web API Attribute Routing article will help you with your need. I would like to have your feedback. Please post your feedback, question, or comments about this article.
Summary:
I Hope this post will be helpful to understand the concept of Optional Parameters in Web API Attribute Routing
Please share this post with your friends and colleagues.
For any queries please post a comment below.
Happy Coding 😉
0 comments:
Post a Comment
If you like this website, please share with your friends on Facebook, Twitter, LinkedIn.