One of the biggest problem or challenge coders face while writing code is interacting with an external service. To make the code open to any sort of changes later on, it is suggested to use a dependency injection known...
Category - Knowledge Base
CREATING WCF RESTFUL SERVICE
Restful service follows the REST (Representational State Transfer) architectural style and approach to communications often used in web service developments. This service allows us to make calls and exchange data using...
UNIT OF WORK PATTERN IN REPOSITORY PATTERN
Unit of work manages in-memory database CRUD operations on entities as one transaction. It is the concept that is related to the effective implementation of the Repository Design Pattern. Let us get to know more about...
CONVERTING POCO CLASS AS CONTROLLER
POCO POCO stands for Plain Old CLR Objects. It is just like any other normal or plain .NET CLR class which is why it is named so. A POCO entity is a class that doesn’t depend on any framework-specific base class. The...
PREFIX.PCH FILE IN XCODE
What is a Prefix.pch file? PCH in prefix.pch stands for Pre-Compiled Header. This type of file contains pre-compiled headers which were invented to make compiling faster. As a prefix header files are parsed only once...
APP LAUNCH PROCESS IN iOS AND ROLE OF UIApplicationMain IN IT
APP LAUNCH PROCESS IN iOS AND ROLE OF UIApplicationMain IN IT The app launch process in iOS consists of several complex sequences. In this article we will be discussing about the process which takes place while opening...
Be an Expert in Using Owin Authentication in Asp.net development (MVC)
The Open Web Interface for .NET, also known as OWIN, defines a standard interface between .NET web servers and web applications. Katana is an open-source component to build and host OWIN-based web applications. With its...
The Ultimate Guide to Know More About SQL Data Type
Table of Content: – • What is Data Type?• Types of SQL Data• Exact Numeric• Unicode Character Strings• Approximate Numeric• Binary Strings• Date and Time• Character strings In SQL Server, every column is defined...
The Easiest Explanation to Grab MVC Application Life Cycle
Table of Content: – What is MVC Application? Components of MVC Life Cycle of MVC Application Routing URL Routing Module MVC Handler Controller Execution Action Result Rendering View This article will...
What is Datacontractserializer
DATA CONTRACT SERIALIZER Topics Mentioned in the article: • What is Data Contract Serializer?• What do you mean by Data Contract Resolver and how to use it?• What is Data serialization and Data de-serialization?• What...