ASP.NET Core

API Gateway in .NET 5 with Ocelot

What is the API gateway? An API gateway is an API management tool that sits between the client and a…

3 years ago

.NET 5 application with Onion architecture

The .NET 5 SDK is a kind of milestone in the .NET world. The .NET 5 include the .NET Core…

4 years ago

SOLID Principles – Dependency inversion principle

In object-oriented design, the dependency inversion principle is a specific methodology for loosely coupling software modules. When following this principle,…

4 years ago

Microservices – Domain-driven design(DDD)

Domain-driven design (DDD) is a software design approach focusing on modelling software to match a domain according to input from…

4 years ago

Microservices – Onion architecture

A microservice architecture – a variant of the service-oriented architecture (SOA) structural style – arranges an application as a collection…

4 years ago

Unit Of Work pattern concepts in .NET

The Repository pattern and Unit of Work pattern are used together in most time. Unit of work pattern can increased…

4 years ago

CRUD – Transaction Behavior in Entity Framework Core

Transaction means allowing several database operations to be processed by programs in the unit manner or atomic manner. If the…

5 years ago

Generic Type in Repository – .NET Core Part

We have talked about the CRUD in the .NET Core cases and the .NET MVC cases based on the Onion…

5 years ago

Aspect-oriented programming in .NET Core

Aspect-oriented programming(AOP) is based on Object-oriented programming(OOP) concepts to extend concepts. It separates the main code to record the log…

5 years ago

Building MVC pattern project by Visual Studio 2017 ( ASP.Net Core Part )

Last week, we talked about the building MVC pattern project, which uses the enterprise architecture based on the .Net framework.…

6 years ago