Tuesday, 10 April 2018

MVC 5 Features

What’s New in ASP.NET MVC 5 Attribute Routing This is where attribute based routing comes in. Using attribute based routing we can define the route in the same place where action method is defined.     [Route("Products/Electronics/{id}")]      public ActionResult GetElectronicItems(string id)      {          ViewBag.Id = id;  ...
Continue Reading →

Monday, 9 April 2018

Group by and Partition by - SQL Server

Difference between Group by and Partition by Now we will list out below difference between two Group by  The SQL GROUP BY clause can be used in a SELECT statement to collect data across multiple records and group the results by one or more columns. In more simple words GROUP BY statement is used in conjunction with the aggregate functions to group the result-set by one or more columns. Reduces...
Continue Reading →

WCF Concurrency

Introduction Concurrency is the control of multiple threads active in an InstanceContext at any given time. This is controlled using the System.ServiceModel.ServiceBehaviorAttribute. ConcurrencyMode is the ConcurrencyMode enumeration. WCF concurrency will help us to configure how WCF service instances can serve multiple requests at the same time. There are three basic types of concurrency supported...
Continue Reading →

Sunday, 8 April 2018

Abstraction vs Encapsulation in .Net

Encapsulation: Encapsulate hides variables or some implementation that may be changed so often in a class to prevent outsiders access it directly. They must access it via getter and setter methods. Abstraction: Abstraction is used to showing what is relevant but in a higher degree(class, interface). Clients use an abstract class(or interface) do not care about who or which it was, they just need...
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