In this post, I am going to show you how to add an OpenAPI documentation page with Swagger to Azure Functions.
How to lock orientation at runtime on iOS 16 with .NET MAUI and Xamarin.Forms
With iOS 16, Apple made some old APIs non-functional. This includes also the established way of locking the orientation. In this post, I am going to show you how you can lock orientation on iOS 16 while the app is running with both .NET MAUI and Xamarin.Forms.
Deploy MAUI apps with Rider on your iOS device after these Xcode errors
In this short post, I show you how to make Rider deploy .NET MAUI iOS apps after getting Xcode errors about missing watchOS and tvOS extensions.
#CASBAN6: Implementing the API endpoints with Azure Functions
In this post, I will show you how to use the base class from the last post to create the actual implementations for our Azure Functions API endpoints.
How to use the .NET CLI clean-up tools on macOS
In this post, I will show you how to use the .NET CLI tools on macOS to clean-up installed SDKs, runtimes, workloads, and NuGet caches.
#CASBAN6: Function base class (and an update to the DTO models)
In this post, I am going to show you the base class for all entity functions (except for the Blog entity). Additionally, I remark some changes to the DTO models that were occurring as development advanced.
#CASBAN6: Setting up an Azure Functions project for the API
In this post, I am going to show you the setup of the Azure Functions project that will provide the API for our blogging engine.
My annual review (2022) [Editorial]
As I did in the last years, also in 2022, I am reviewing the year from my personal perspective and give a short outlook on what I expect from 2023.
#CASBAN6: the DTOs and mappings
In this post of my #CASBAN6 series, I am going to show the data transfer objects (DTO) used when calling the API and the corresponding mapping helpers for my serverless blog engine.
#CASBAN6: Implementing the data model using EntityFramework Core (separate libraries)
In this post, I will show you how I implemented the data model using EntityFramework Core and how to seed the database.