Azure Functions with Dependency Injection
Azure Functions got some improvements in the last months. Now it’s no longer necessary to create static methods, instance methods … Continue reading Azure Functions with Dependency Injection
Christian Nagel and the CN innovation team about .NET Aspire, C#, Azure, ASP.NET Core, WinUI, .NET MAUI, and more
Azure Functions got some improvements in the last months. Now it’s no longer necessary to create static methods, instance methods … Continue reading Azure Functions with Dependency Injection
Microsoft Azure offers great features for IoT devices. A simple device is the Azure IoT button. This button is – … Continue reading Click the Azure IoT Button – Part 1
After some first experiments using the EF Core provider with Azure Cosmos DB, with the second article on EF Core … Continue reading Relations with Azure Cosmos DB and EF Core
With C#, interfaces can be implemented implicitly or explicitly. With implicit interface implementations, the members of the interface are public … Continue reading Explicit Interface Implementation with C#
C# has different meanings for the using keyword. One is the using directive to import types from namespaces, and to … Continue reading Using, using, using with C# 8
.NET Core 3.0 doesn’t make it easier to choose the correct Web technology creating .NET applications. Some more options have … Continue reading Choosing the right ASP.NET Core technology
ASP.NET Core included the WebHost class that was used in the Main method to startup everything up – including the … Continue reading Hosting DI Container with .NET Core 3.0
One of the many great features of C# 8 is async streams. Before C# 8, you could use the await … Continue reading Async Streams with C# 8
I had some great days at BASTA! Spring in Frankfurt – with three presentations. Thank you for joining! My presentations … Continue reading Slide and Source Code for BASTA! Frankfurt, 2019
Using EF Core, references can be eager loaded, explicitly loaded, and lazy loaded. With eager loading you load references by … Continue reading Lazy Loading with EF Core