Category: Uncategorized
ASP.Net Core 3 – pass parameters to actions
Passing parameters to actions is an essential part of building RESTful Web API. .Net Core 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 need to define a routing that would contain… Continue reading ASP.Net Core 3 – pass parameters to actions
Visual Studio has now solution filtering
Recently I’ve been working with a solution, that has 85 projects and some of them are really big. Analyzing this amount of data for Visual Studio 2019 and JetBrains Resharper causes difficulties and leads to visible slowdowns. In this huge solution, there are multiple services and websites, but usually, I work with only one at… Continue reading Visual Studio has now solution filtering
.Net Core Global Tools – your custom app from nuget package
I love .net core. It is an awesome concept and a great, light framework to work with. One essential part of the framework environment is a .Net Core CLI. It’s a set of cross-platform tools and commands that can create, build and publish you app. Along with the platform comes also Global Tools, a concept… Continue reading .Net Core Global Tools – your custom app from nuget package
.Net Core – introduction
A .Net Core is a catchphrase that you can hear more and more often in both developer discussions and job offers. You probably already heard that it’s fast, simple and runs on multiple platforms. In this post, I’d like to sum everything up and highlight what I like the most about it. Why new framework?… Continue reading .Net Core – introduction