-
Solid Principle’s
The Solid Principles are the principles that allow us to manage most of the software design problems.
These are the basic principles that should be...
Read More >
-
Clean Code Tips and Trick ASP.NET - C#
Naming Conventions
Avoid Using Bad Names - A good variable name allows the code to be used by many developers. The name should reflect what it...
Read More >
-
Code Coverage - Best Practices
1. Focus on test quality over quantity.
2. Make sure that frequently changing code is well covered.
3. There is no “Ideal Code Coverage Number”. O...
Read More >
-
Working with cookies in Blazor web assembly
In the Blazor Web assembly application, HttpClient doesn't include cookies with requests. If you wish to read/write cookies, you will have to use ...
Read More >
-
Blazor Vs. Angular
Blazor
Angular
Blazor is a new ASP.NET Core web framework from Microsoft.
Angular is a TypeScript-ba...
Read More >
-
Difference between BehaviorSubject, ReplaySubject, AsyncSubject, and Observable in Angular
BehaviorSubject is a subject that releases the last value released by the source Observable.
Observable is used to release values over time.
...
Read More >
-
Angular - Searchable Dropdown
Searchable Dropdown
Searchable Dropdown is a combination of 2 controls.
1. Select
2. Search bar
Why Needed new Control
Select...
Read More >
-
Hangfire with ASP.NET Core
Hangfire with ASP.NET Core
All applications need to do some sort of background work. A repetitive job that we need to do every day or eve...
Read More >
-
MongoDB Create Database
MongoDB use DATABASE_NAME is used to create database. The command will create a new database if it doesn't exist, otherwise it will return the exi...
Read More >
-
BEM | Block, Element, Modifier
The Block, Element, Modifier methodology (commonly referred to as BEM) is a popular naming convention for classes in HTML and...
Read More >