Saturday, 30 December 2017

SingleOrDefault Vs FirstOrDefault

 SingleOrDefault() Vs. FirstOrDefault() in LINQ Query Single() / SingleOrDefault() First () / FirstOrDefault() Single() - There is exactly 1 result, an exception is thrown if no result is returned or more than one result.  SingleOrDefault() – Same as Single(), but it can handle the null value. First() - There is at least one result, an exception is thrown if no result...
Continue Reading →

Wednesday, 27 December 2017

Web API Filters

Web API includes filters to add extra logic before or after action method executes. Filters can be used to provide cross-cutting features such as logging, exception handling, performance measurement, authentication and authorization. Filters are actually attributes that can be applied on the Web API controller or one or more action methods. Every filter attribute class must implement IFilter interface...
Continue Reading →

Wednesday, 29 November 2017

Enterprise Library DAAB - C# .Net

Enterprise Library Data Access Application Block In C# .NET What is a Data Access Application Block (DAAB)?  A Data Access Application Block encapsulates the performance and resource management best practices for accessing Microsoft SQL Server databases. It can easily be used as a building...
Continue Reading →

Thursday, 16 November 2017

Router Guards- Angular 2

Protecting routes is a very common task when building applications, as we want to prevent our users from accessing areas that they’re not allowed to access, or, we might want to ask them for confirmation when leaving a certain area. Angular’s router provides a feature called Navigation Guards that...
Continue Reading →

Saturday, 23 September 2017

MongoDB - Installation and Setup

Here you will get to know about Installation and setup of MongoDB for your NodeJS Application. you need to just follow the below steps. 1- First of all you need to install MongoDB in your System.     Url : https://www.mongodb.com/download-center#community 2- Now Install the Mongochef...
Continue Reading →

Friday, 22 September 2017

Routing - Angular

What are the main routing Component? Angular provides 3 different components for routing configuration: Routes is the configuration to describe application’s different routes RouterOutlet is a “placeholder” component that holds the view for each route RouterLink is a directive to link to routes Routes: Routes is an object to describe the routes of the application. const routes: Routes  = [     { path: '', redirectTo: 'login', pathMatch:'full' },     { path: 'login', component: LoginComponent },     { path: 'home', component: HomeComponent ,      children: [       { path: '', component: DashBoardComponent },       {path: 'events', component: EventsComponent}      ]},     { path: 'register', component: RegisterComponent },     { path: 'about', component: AboutComponent },     { path: '**', component: p404Component },    ]; We...
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