Wednesday, 26 November 2014

Extension Method

IntroductionAn extension method enables us to add methods to existing types without creating a new derived type, recompiling, or modify the original types. We can say that it extends the functionality of an existing type in .NET. An extension method is a static method to the existing static class....
Continue Reading →

Tuesday, 25 November 2014

Ordering data in LINQ queries by more than one column

In this post, I am going to show how to do ordering when you require to order data by using multiple columns.By using .Orderby(x=>x.Columnname) in a LINQ query, we can easily order data in a source collection. Most new developers make use of the same function twice .Orderby(x=>x.Columnname).Orderby(x=>x.Columnname) and thinks that will do the ordering in multiple columns.IEnumerable<Employee> emp = dc.Employees                                 .OrderBy(x => x.Name)                                 .OrderBy(x => x.Desc);But...
Continue Reading →

Thursday, 20 November 2014

@@IDENTITY, SCOPE_IDENTITY() , IDENT_CURRENT

Open Microsoft Sql server management studioCreate following two tables and trigger Now we will execute following commands but within same session (with in same query window) Result of both select statements is empty. Now we will execute following commands but within same session (with in same...
Continue Reading →

Monday, 17 November 2014

Events in ASP.NET Master and Content Pages

Both master pages and content pages can contain event handlers for controls. For controls, events are handled locally—a control in a content page raises an event in the content page, and a control in the master page raises an event in the master page. Controls events are not sent from the content page to the master page. Similarly, you cannot handle an event from a master page control in a content...
Continue Reading →

Thursday, 13 November 2014

Private Constructor in C#

Introduction: Here I will explain what is private constructor in c# with example. Private constructor in c# is used to restrict the class from being instantiated when it contains every member as static. Description: Constructor is a special method of a class which will invoke automatically whenever instance or object of class is created. Constructors are responsible for object initialization and...
Continue Reading →

Thursday, 6 November 2014

Reference Type And Value Type in C#

Introduction:  The Types in .NET Framework are either treated by Value Type or by Reference Type. A Value Type holds the data within its own memory allocation and a Reference Type contains a pointer to another memory location that holds the real data. Reference Type variables are stored in the...
Continue Reading →

Static Constructor in C#

Introduction: Here I will explain what is static constructor in c# with example. Static constructor in c# is used to create static fields of the class and to write the code that needs to be executed only once. Description: Constructor is a special method of a class which will invoke automatically whenever instance or object of class is created. Constructors are responsible for object initialization...
Continue Reading →

Topics

ADFS (1) ADO .Net (1) Ajax (1) Angular (47) Angular Js (15) ASP .Net (14) Authentication (4) Azure (3) Breeze.js (1) C# (55) CD (1) CI (2) CloudComputing (2) Coding (10) CQRS (1) CSS (2) Design_Pattern (7) DevOps (4) DI (3) Dotnet (10) DotnetCore (20) Entity Framework (5) ExpressJS (4) Html (4) IIS (1) Javascript (17) Jquery (8) jwtToken (4) Lamda (3) Linq (10) microservice (4) Mongodb (1) MVC (46) NodeJS (8) React (10) SDLC (1) Sql Server (32) SSIS (3) SSO (1) TypeScript (3) UI (1) UnitTest (2) WCF (14) Web Api (16) Web Service (1) XMl (1)

Dotnet Guru Archives