Category: My Blog

  • Blog
  • Category: My Blog

How to install node.js and npm on Debian 9

In this blog, We are going to see how we can install the node.js and npm on the Debian Operating system. So let’s get started. First of all Either you should use “Sudo” command or use your root users to run all this command so that it will be available to all the users on

Deferred vs Immediate execution in Linq

In this post, We are going to learn about Deferred vs Immediate execution in Linq.  There an interesting variations how Linq operators executes and in this post we are going to learn both Deferred execution and immediate execution. In the Deferred execution query will be executed and evaluated at the time of query variables usage.

Entity Framework internals :IEnumerable and IQueryable

Now days, Entity framework is one the most used ORM in .NET world. Still I can see lots of people confused with IQueryable and IEnumerable. If they dont’ know what is difference between them then they are going to make mistakes .When you first look at it both looks same. But there are quite differences

How to add service reference dynamically from user control? Microsoft Ajax

First, Create a web page default.aspx and put the html code as following.. ————————————————————————— ————————————————————————– Now, Create a usercontrol my first user control Create a function called AddScriptReference as following… ‘————————————————————————– private void AddScriptReference() {      ScriptManager scriptManger = ScriptManager.GetCurrent(this.Page);      if (scriptManger != null)      {          ServiceReference serviceReference = new ServiceReference();          serviceReference.Path=”~/MyWebService.asmx”;