top of page
Search


.Net 5 Web API with Ocelot - Multiple Auth Schemes JWT
Ocelot its a great package which provide resources to build Api gateways. If you aren’t familiarized with this concept, check this link...

The Tech Platform
Oct 18, 2021


Functional DI in Nodejs for .Net developers
At Ohpen our main stack is .Net and we love it :) ! It serves well to create performant web apis with many endpoints. When I started...

The Tech Platform
Oct 12, 2021


Upload And Download Multiple Files Using .Net 5.0 Web API
Begin with creating an empty web API project in visual studio and for target, framework choose .Net 5.0. No external packages were used...

The Tech Platform
Oct 11, 2021


Multithreading and parallelism with C # examples in the .NET platform.
What is multithreading? Multithreading— it is the ability of a platform (application) to perform multiple operations in one process. One...

The Tech Platform
Oct 7, 2021


Create a background job with Quartz.Net in .NET Core
There are processes you want to run frequently and automatically in the background of your main application. There are many libraries...

The Tech Platform
Sep 29, 2021


RESTful API development in .NET 5 with Protocol Buffers and Cybtans-CLI
The Cybtans Command Line Interface aka Cybtans CLI is a cross-platform Protocol Buffers compiler for the development of RESTful APIs with...

The Tech Platform
Sep 22, 2021


Mystery of Equality in C#: IEquatable<T>, IEqualityComparer<T>, IComparable<T>, IComparer<T>
What is the difference between these confusing words? They are very similar to each other. In this article, we will learn everything...

The Tech Platform
Sep 8, 2021


Ways to handle errors in .NET
Error handling is always an essential part of an application. When processing some business logic requests, it’s always necessary to let...

The Tech Platform
Sep 6, 2021


Target-typed new() expressions in C# 9
“Target typing” is a term used for when an expression gets its type from the context of where it’s being used. In C# 9.0 some expressions...

The Tech Platform
Sep 6, 2021
![How to bind [FromRoute] and [FromBody] into one model in .NET 5](https://static.wixstatic.com/media/0f65e1_d46747b8066a4f8f849cb66840e1220c~mv2.png/v1/fill/w_443,h_250,fp_0.50_0.50,q_35,blur_30,enc_avif,quality_auto/0f65e1_d46747b8066a4f8f849cb66840e1220c~mv2.webp)
![How to bind [FromRoute] and [FromBody] into one model in .NET 5](https://static.wixstatic.com/media/0f65e1_d46747b8066a4f8f849cb66840e1220c~mv2.png/v1/fill/w_305,h_172,fp_0.50_0.50,q_95,enc_avif,quality_auto/0f65e1_d46747b8066a4f8f849cb66840e1220c~mv2.webp)
How to bind [FromRoute] and [FromBody] into one model in .NET 5
There are several ways in .NET 5 Web Api to bind request data into a model. Attributes such as [FromBody] or [FromRoute] can be used for...

The Tech Platform
Sep 2, 2021
bottom of page