Posts

Showing posts with the label Technical

Important C# functionalities every developer should get hands on

C# since its inception has gone through many changes and new feature gets added every now and then, here is list of what every developer should try to get hands on. Most of it will be applicable for any OOP language. Principal of OOP (Inheritance/Encapsulation/Abstraction/Polymorphism). Abstract class and Interface. Generic classes and functions. SOLID principles. delegate and its use. Fun<>. Implement functional programming using C#. (Will help you understand how all this .where().select() works) Reflection. (Try to mimic ORM using reflection) var,dynamic,Tupple,ValuedTupple Most common design patterns.

Azure

Image
What is Azure Cloud:- Microsoft has been building highly scalable applications in datacenters around the world—applications that have global reach and high availability, and offer great functionality to users. Azure allows you to take advantage of the same infrastructure to deploy your own applications, with the corresponding capabilities to reduce your maintenance requirements, maximize performance and minimize costs. Though we know that cloud adds lot of value but that only happens when it is done right and hence we need have thought of  below before taking a call:- 1. Always plan for the long-term . It’s easy to be tempted by solutions that promise immediate benefit and what looks like the quickest route to the cloud.  While the PaaS (platform as a service) approach may appear more complex, the long-term benefits such as built-in elasticity, service healing, patch management, and so forth, make it a worthwhile investment that will pay dividends both on the technology and busi

Cookieless Session

Introduction There are various reasons to adopt cookieless session. Recently, I implemented cookieless session and in that process, I went through many articles on the internet, but none of them have gone in depth to bring it all together. To implement cookieless sessions, you don't have to modify your programming model—a simple change in the  web.config  file does the trick. But with that can come uncovered scenario and you would end up spending considerable time fixing it up just like I did. So let's get started with what and how it has to be changed to make cookieless work for you with no issues. Now let us go through the steps one by one: Step 1: Adjust the web.config file Interestingly enough, you don't have to change anything in your ASP.NET application to enable cookieless sessions, except the following configuration setting. < sessionState cookieless ="true" />                     < authentication mode ="Forms">