#csharp
Read more stories on Hashnode
Articles with this tag
No need to use repository pattern for just to test database queries. ยท Introduction Entity Framework Core is a popular Object-Relational Mapping (ORM)...
There are four common types of sharding strategies. Horizontal or range based. Vertical. Key-based (Algorithmic). Directory-based (Dynamic). In this...
What is mocking? Mocking is a testing technique where mock objects are used instead of real objects for testing purposes. In general, in dotnet Moq...
Introduction: Exceptions are a main and crucial part of the software development industry. There is a saying in the industry - Bugs will be there,...
Concurrency, parallel processing in C# ยท Definations: Concurrency means doing more than one at a time. Parallelism means doing lots of work by dividing...
Understanding asynchronous programming in C# ยท What is asynchronously programming? I am picking this definition from wiki Asynchrony, in computer...