Friday, April 6, 2018

Stored procedure CREATE/ALTER in a same script.

In a continuous system integration process, we need to create/alter stored procedure.This can make sometime problem/error in the deployment phase.
For this reason it is a good practice to check with the SP name if the object exist and then always go for the ALTER procedure.


Rest Service using WEB API C#

This post will show a simple example of REST service built on Micrsoft WEB API framework. WEB API is an extensible framework from microsof...