Tag: Web API
-
All about types of Action Results in the Web API
A Web API controller action can return the following types: void HttpResponseMessage IHttpActionResult Other types, such as IEnumerable, object, collections, etc.
-
How to work with the Ignite UI Chart in an AngularJS application
In this post we will learn how to work with the Ignite UI chart in an AngularJS application. Although I will use the ASP.NET Web API to pull data from the database, you can use REST service or a Web API created on any stack with the Ignite UI charts in your AngularJS application. This…
-
How to work with the Ignite UI Chart in an AngularJS application
In this post we will learn how to work with the Ignite UI chart in an AngularJS application. Although I will use the ASP.NET Web API to pull data from the database, you can use REST service or a Web API created on any stack with the Ignite UI charts in your AngularJS application. This…
-
Creating an ASP.NET Web API using the Entity Framework Code First approach and the Repository pattern
In this article, we will learn how to create an ASP.NET Web API using the Repository pattern and the Entity Framework code first approach. Essentially you’ll learn how to: Create a core project which will contain entity and the repository interface; Create an Infrastructure project which will contain database operations code using the Entity Framework…
-
How to perform a CRUD operation on the jQuery igGrid with the ASP.NET Web API
In this post we will learn how to perform a CRUD operation on the igGrid using the ASP.NET Web API, including: Creating the ASP.NET Web API using the Entity Framework database first approach Performing a CRUD operation on the igGrid in a jQuery application At the end of the post we should able to create…
-
A Step-by-Step Guide to Working with the ASP.NET Web API and AngularJS
Read full article on the Infragistics blog In this post we will learn to work with AngularJS and ASP.NET Web API in a step by step manner. I’ll assume that you are already familiar with some of the basic terms like what AngularJS and a Web API is, and we’ll work in a hands-on way,…
-
Don’t Create REST APIs with WCF REST Services…use Web API Instead
There was time when developers used to create Web Service using the WCF. Their argument was using basicHttpBinding makes a WCF service as a Web Service. Yes that ASMX based web service. I never agree to this argument. Clearly WCF was an evolvement over ASMX Web Service. Now let us talk about purpose of this…
-
First look of book: Designing Evolvable Web APIs with ASP.NET by Glenn Block
In India order this book from Amazon here “You become what you read “ In this era of Kindle, tablets and EBooks, I proudly consider myself as real book lover. I get more connected to real book than any EBook on any trendy device. In order to purse my passion of collecting good books, toady…
-
How to Self-Host ASP.Net Web API: Part 3 of Many
Creating First HTTP Service using ASP.NET Web API: Part1 of Many Consuming ASP.NET Web API Service using HttpClient: Part2 of Many In this post, we will step by step walkthrough that How to Self-Host ASP.Net Web API. We are going to host Web API in a console application. To do that creates a Console Application.…