Thursday, 24 October 2024

Unit Test Coding

What is Assert method?Assert is a static class which contains some methods to help you make checks in your test code. The methods check your condition and if the condition fails, it’ll also make the test fail with a nice message to it. These methods are pretty straightforward so I will just mention...
Continue Reading →

Wednesday, 9 October 2024

Unsubscribe observable

How to UnsubscribeVarious ways to UnsubscribeUse Async Pipe: Use Async pipe to subscribe to an observable, it automatically cleans up, when we destroy the component.Use Unsubscribe(): Use Unsubscribe() method on the subscription. It will clean up all listeners and frees up the memoryTo do that, first create a variable to store the subscription.  obs: Subscription;Assign the subscription...
Continue Reading →

Sunday, 6 October 2024

Clean Architecture

What is Clean Architecture?Clean Architecture is a design pattern that separates an application into different layers based on their responsibility.  It’s a way of organizing your code into independent, testable, and reusable components. It isolates the business logic of the application from...
Continue Reading →

Saturday, 5 October 2024

RESTful API

 RESTful API, or Representational State Transfer API, is a set of rules and conventions for building and interacting with web services.Key Principles of RESTful APIs:Statelessness: Each request from a client must contain all the information the server needs to fulfill that request. The server does not store any client context between requests.HTTP Methods: RESTful APIs use standard HTTP methods...
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