Click here to Skip to main content
15,887,477 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is a good way to learn about REST services with C# MVC/ASp.net and JSON?
I am currently trying to learn about REST and JSON combined with C#/MVC/Asp.net
What web services are available so I can practice with?
Also are there any step by step tutorials on this and if so are they on yotuube, pluralsight or somewhere else?

Any insight or links or example pages would be helpful ,because I am confused by all the examples/Youtube videos and all the different ways things can be put together.

What I have tried:

What is a good way to learn about REST services with C# MVC/ASp.net and JSON?
I am currently trying to learn about REST and JSON combined with C#/MVC/Asp.net
What web services are available so I can practice with?
Also are there any step by step tutorials on this and if so are they on yotuube, pluralsight or somewhere else?

Any insight or links or example pages would be helpful ,because I am confused by all the examples/Youtube videos and all the different ways things can be put together.
Posted
Updated 19-Jun-17 1:01am
Comments
F-ES Sitecore 19-Jun-17 4:41am    
The best way to learn is to write your own REST API. That way you can start with basic things like methods with no params or return data, then gradually add complexity to your APIs all the way to persisted sessions, complex return data, complex parameters etc.

This is a very broad question and can never be answered in a QA, simply or even easily. But I will try to give you a very short glimpse of the answer, then you can continue to learn it all by yourself — because, in the end it is you, who has to learn.
Quote:
What is a good way to learn about REST services with C# MVC/ASp.net and JSON?
The best way is to build something. Using the concepts of REST architecture and ASP.NET MVC framework (typically, you will do that in ASP.NET Web API only), and then see how you can build one service, other and what is the difference. The benefit would be that you will be learning self-paced, without any influence and you will get easily, to the point where you can easily understand the pattern or architecture itself.
Quote:
What web services are available so I can practice with?
Web services is a different concept, such as WCF is a framework to develop a web service. But since you are focusing on ASP.NET Web API, forget about WCF as they do are not going to work together and require a different sense of understanding and programming.
Quote:
Also are there any step by step tutorials on this and if so are they on yotuube, pluralsight or somewhere else?
Yes, everywhere. They are available on almost all of the platforms you have just mentioned. The thing is that it is you who has to learn. So the best way to learn would be to actually start working on it, all by yourself.

Instead of following the author, exactly the way he is doing, build a different application; if he is building a bookkeeping system, build a car showroom and apply the concepts there. That way, you will be learning the concepts, but in your own way.
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900