Sending a request in ASP.NET Core in .NET 5 is a standard operation that can be achieved pretty easily. However, details matter in this case and I’ll show you the best practice available. We will also take a look at some advanced features to get the full scope. Using a real available API In this… Continue reading ASP.NET Core in .NET 5 – sending a request
Month: May 2020
ASP.NET Core in .NET 5 – pass parameters to actions
Passing parameters to actions is an essential part of building RESTful Web API. ASP.NET Core released as a part of .NET 5 offers multiple ways to pass parameters to methods, that represent your endpoints. Let’s see what they are. Pass parameter as a part of an URL When passing a parameter in a URL, you… Continue reading ASP.NET Core in .NET 5 – pass parameters to actions
Entity Framework Core 5 vs SQLBulkCopy
Entity Framework Core 5 is a great ORM to use and connect to the database with. It is easy to use and easy to understand. It offers just enough for the most common scenarios. So what about inserting big amounts of data in a one go? Would it be fast enough? Let’s have a look… Continue reading Entity Framework Core 5 vs SQLBulkCopy