Use Core EF to create Instant Web API


Posted On Jan 30 2020

Use Core EF to create Instant Web API? The biggest advantage of a Restful API is that you don’t have to install anything on the client side (i.e. Your app for example). No SDKs or frameworks are needed nor required. All you have to do is to make a simple HTTP request to the target API service, let the server do the precessing for you and get the result back. Suppose for example, you wanna build a Snapchat clone app. You need for that an image/video processing library, an augmented reality toolkit and an SDK for facial feature extraction. As you may notice, this is time consuming and require a lot of work integrating all the complex libraries into you program.

Another advantage of SOAP is that it offers built-in retry logic to compensate for failed communications. REST, on the other hand, doesn’t have a built-in messaging system. If a communication fails, the client has to deal with it by retrying. There’s also no standard set of rules for REST. This means that both parties (the service and the consumer) need to understand both content and context. At the end of the day, the best protocol is the one that makes the most sense for the organization, the types of clients that you need to support, and what you need in terms of flexibility.

In RESTful Web Services Cookbook, Chief Engineer at eBay (and former Yahoo Architect) Subbu Allamaraju suggests an alternative approach called snapshots. For example, if an order manager wants to see some specific statistics (5 latest orders, 5 biggest clients, etc.) then we can create a snapshot resource that finds and returns all these information: I personally like the snapshot approach better, because it doesn’t feel like querying a database. But with that said, the snapshot approach requires an intimate knowledge of the API user, and the extra order top-level resource will offer more flexibility.

REST API from Visual Studio. Use your Visual Studio 2017 to generate initial code for Web API. Our product will automate repetitive tasks by generating entities, models and controllers to build a complete REST API. Visual Studio Unit Test: The quality of the generated code is always important. Instant Web API generate unit tests for all the tables used in the project to make sure that you get the best final version. Relational Database : The code generated includes foreign key checks for post and updates, so that will comply with data integrity. Also, it uses unique indexes to check for duplicates and in doing so avoids orphan records. Live API Documentation: Instant Web API uses Swagger UI, to provide you with interactive documentation. Live documentation allows a user to try out different method and parameters and see the request, responses in real time. See additional info on Create ASP.Net Web API from MS SQL in Minutes With Instant Web API.

Last Updated on: February 8th, 2020 at 12:45 pm, by


Written by Amelia Whitehart