It was very busy last week! Letās get right to it.
- One big thing: .NET 6 gets Preview 1
- The little things: Dapr v1.0 is released, Azure Static Web Apps, more SolarWinds findings
- Dev Discussions: Cecil Phillip
- Last week in the .NET world
One big thing: .NET 6 gets Preview 1
It seems like just yesterday .NET 5 went live. (It was November, for the record.) This week, the .NET team announced .NET 6 Preview 1, to be officially released in November 2021. You can also check out the ASP.NET Core and EF Core 6 announcements. .NET 6 will be an enterprise-friendly LTS release, meaning it will be supported for three years.
As expected, a main focus will be integrating Xamarin into the āOne .NETā model by way of the .NET Multi-Platform App UI (MAUI). With Preview 1, Xamarin developers can develop Android and iOS with MAUI. Future previews will address support for macOS and Windows. Another big goal is improving the inner loop experience. You can check out themesof.net to see whatās being prioritized. AOT support is not rolled out yet, but you can head over to the NativeAOT repo to get up to speed.
For ASP.NET Core 6, theyāre prioritizing work on hot reload, micro APIs, AoT compilation, updated SPA support, and HTTP/3. For Preview 1, the team now supports IAsyncDisposable
in MVC, offers a new DynamicComponent
for Blazor to render a component based on type, and applying more nullability annotations.
For EF Core 6, the team is busy with support for SQL Server sparse columns, required property validations for not null for the in-memory database, improved SQL Server translation for IsNullOrWhitespace
, a Savepoints API, and much more.
Itās sure to be a busy eight months. Stay tuned.
The little things: Dapr v1.0 is released, Azure Static Web Apps, more SolarWinds findings
This week, Dapr hit GA with v1.0. The next in a long line of technologies that promise to make distributed systems easier, weāll see if this one sticks. While itās hard for folks to pin down what exactly Dapr isāno, seriouslyāit uses pluggable components to remove the complexity of low-level plumbing involved with developing distributed applications.
Hereās more detail from the new Dapr for .NET Developers e-book:
It provides a dynamic glue that binds your application with infrastructure capabilities from the Dapr runtime. For example, your application may require a state store. You could write custom code to target Redis Cache and inject it into your service at runtime. However, Dapr simplifies your experience by providing a distributed cache capability out-of-the-box. Your service invokes a Dapr building block that dynamically binds to Redis Cache component via a Dapr configuration. With this model, your service delegates the call to Dapr, which calls Redis on your behalf. Your service has no SDK, library, or direct reference to Redis. You code against the common Dapr state management API, not the Redis Cache API.
ā
In my talk last week on Azure Static Web Apps, it was nice to see Anthony Chu attend. Heās the PM for Azure Functions and Azure Static Web Apps. We asked whatās new with Azure Static Web Appsāhe talked about a new tier, a CLI for a better local development experience, root domain support (right now it supports custom DNS with https://mysite.com but not https://www.mysite.com), an SLA, and more. Thereās no firm dates on these things, but it looks like improvements are on the way before Microsoft takes it out of preview.
ā
We heard a little more about how the SolarWinds hack hit Microsoft:
Microsoft said its internal investigation had found the hackers studied parts of the source code instructions for its Azure cloud programs related to identity and security, its Exchange email programs, and Intune management for mobile devices and applications. Some of the code was downloaded, the company said, which would have allowed the hackers even more freedom to hunt for security vulnerabilities, create copies with new flaws, or examine the logic for ways to exploit customer installations ā¦ Microsoft had said before that the hackers had accessed some source code, but had not said which parts, or that any had been copied.
Microsoft blogged their āfinal update,ā so thatās all weāll hear about it. It looks like their defenses held up.
Dev Discussions: Cecil Phillip
I recently had a chance to catch up with Cecil Phillip, a Senior Cloud Advocate for Microsoft. Heās a busy guy: you might have seen him co-hosting The .NET Docs Show or the ON.NET Show. Cecil also does a lot with with microservices and distributed systems. I wanted to pick his brain on topics like Dapr, YARP, and Service Fabric. I hope you enjoy it.
Iād love to hear about how you got in this field and ended up at Microsoft.
Iāll try to give you a condensed version. Back in Antigua, we didnāt have computers in school at the time. One day, my dad brought home a Compaq Presario to upgrade from using a typewriter that he used for working on his reports. Initially, I wasnāt allowed to āexperimentā with the machine, so Iād explore it when he wasnāt around. I was so curious about what this machine could do, I wanted to know what every button didāand eventually, I got better at it than he was.
I went to college and got my CS degrees. I didnāt know I wanted to be a programmer. I didnāt know many examples of what CS folks did at the time. I got my first job working on ASP.NET Web Forms applications. After I got my green card, I spent a few years exploring different industries like HR, Finance, and Education. I taught some university courses in the evenings, and it was at that point I realized how much I loved teaching kids. Then one day, I saw a tweet about a new team at Microsoft, and I thought, āWhy not?ā I didnāt think Iād get the job, but Iād give it a try.
When it comes to microservices, thereās been a lot of talk about promoting the idea of āloosely coupled monolithsā when the overhead of microservices might not be worth it. What are your thoughts?
Somewhere along the way, having your application get labeled as a monolith became a negative thing. In my opinion, weāve learned a lot of interesting patterns that we can apply to both monoliths and microservices. For some solutions and teams, having a monolith is the right option. We can now pair that with the additional benefits of modern patterns to get some additional resiliency for a stable application.
Iāve been reading and learning about YARP, a .NET reverse proxy. Why would I use this over something like nginx?
If youāre a .NET developer and want the ability to write custom rules or extensions for your reverse proxy/load balancer using your .NET expertise, then YARP is a great tool.
Azure Front Door seems reverse-proxy_ish_āwhy should I choose YARP over this?
Azure Front Door is a great option if youāre running large-scale applications across multiple regions. Itās a hosted service with load balancing features, so you get things like SSL management, layer-7 routing, health checks, URL rewriting, and so on. YARP, on the other hand, is middleware for ASP.NET Core that implements some of those same reverse proxy concerns, but youāre responsible for your infrastructure and have to write code to enable your features. YARP would be more akin to something like HAProxy or nginx.
A lot of enterprises, like mine, use nginx for an AKS ingress controller. Will YARP ever help with something like that?
Maybe. š
I know youāve also been working with Dapr. I know it simplifies event management for microservices, but can you illustrate how it can help .NET developers and what pain points it solves?
The biggest selling point for Dapr is that it provides an abstraction over common needs for microservice developers. In the ecosystem today, there are tons of options to choose from to get a particular thing doneā but with that comes tool-specific SDKs, APIs, and configuration. Dapr allows you to choose the combination of tools you want without needing to have your code rely on tool-specific SDKs. That includes things like messaging, secrets, service discovery, observability, actors, and so on.
How does Dapr compare with something like Service Fabric? Is there overlap, and do you see Dapr someday replacing it?
I look at Dapr and Service Fabric as two completely different things. Dapr is an open-source, cross-platform CLI tool that provides building blocks for making microservice development easier. Service Fabric is a hosted Azure service that helps with packaging and deploying distributed applications. Dapr can run practically anywhereāon any cloud, on-premises, and Kubernetes. You can even run it on Service Fabric clusters since Service Fabric can run processes. It can run containers and even contains a programming model that applications can use as a hard dependency. Dapr itself is a process that would run beside your applicationās various instances to provide some communication abstractions.
What is your one piece of programming advice?
I think itās important to spent time reading code. We should actually read more code than we write. Thereās so we can learn and be inspired by exploring the techniques used by the developers that have come before us.
You can connect with Cecil Phillip on Twitter.
š Last week in the .NET world
š„ The Top 3
- Niels Swimberghe uses Project Tye to host Blazor WASM and ASP.NET Web API on a single origin to avoid CORS and also deploys Blazor WebAssembly to AWS Amplify.
- Andrew Lock uses source generators to generate a menu component in a Blazor app.
- Steve Gordon writes about the IServiceCollection and dependency injection.
š¢ Announcements
- .NET 6 preview 1 is out: Richard Lander has the main announcement, Sourabh Shirhatti talks about ASP.NET Core updates, and Jeremy Likness announces whatās new with EF Core 6
- Tara Overfield releases the .NET Framework monthly cumulative update.
- The Azure SDK folks provide their monthly update.
- Dapr v1.0 released this week, and the Dapr folks talk about the community effort to deliver Dapr v1.0. (.NET 6 Preview 1 stole the show this week, and Iāll address this in detail next week.)
- GitHub Enterprise Server 3.0 is generally available.
š Community and events
- Chris Sainty hits a million Blazored downloads.
- For standups this week: .NET Tooling talks ā¦ tools, Machine Learning looks at ML.NET APIs, and ASP.NET discusses flexible HTTP APIs.
- The .NET Docs Show talks with Daniel Krzyczkowski about the Microsoft Identity Platform, but I really wonder: does he work inside of a GitHub contribution graph?
š Web development
- David Jones writes about using .Includes in EF with a Blazor Server app.
- Josef Ottosson offers his thoughts on the Result class.
- Sam Basu writes about how to make Blazor web apps for Desktop.
- Dave Brock (hi!) builds a Blazor āCopy to Clipboardā component.
- Damien Bowden works on requiring user password verification with ASP.NET Core identity to access Razor Pages.
- Shawn Wildermuth offers a mea culpa on hosting SPAs in ASP.NET Core.
- David Grace continues work on his Twitter dashboard .NET 5 app.
- Marinko Spasojevic works on fetching data and content negotiation with HttpClient in ASP.NET Core.
š„ The .NET platform
- Khalid Abuhakmeh fixes .NET dependencies with monkey patching.
- Nick Randolph builds an Android app with .NET 6.
- Mitchel Sellers writes about deterministic builds and source linking in .NET 5.
ā The cloud
- Justin Yoo writes about bulk managing Key Vault secret rotation.
- Tim Sander writes about new ways to use composite indexes in Azure Cosmos DB.
- Gregor Suttie uses Azure Durable Functions to place phone calls when alerts trigger.
- Adam Storr controls logging levels in Azure Functions.
- Damien Bowden adds ASP.NET Core authorization for an Azure Blob Storage and Azure AD users for role assignments.
- Dominique St-Amand has some FAQs and tips for Azure Functions in C#.
- Brandon Minnick creates Azure Functions using .NET 5.
š Languages
- Thomas Claudius Huber writes about improved pattern matching with C# 9.
- MichaÅ BiaÅecki writes about C# tuples.
- Jason Roberts works on C# nested switch expressions.
- Khalid Abuhakmeh plays the Super Mario Bros. theme with C#.
š§ Tools
- Scott Hanselman writes about DotNet Boxed for prescriptive templates for .NET Core.
- Nick Randolph works on WinUI 3 debugging tooling with Visual Studio.
- Thomas Ardal exports data from Google Analytics with .NET.
- Jonathan Bowman installs Docker on WSL without Docker Desktop.
š± Xamarin
- Mohammed Ismail Sameer Mohamed Saleem helps you avoid common mistakes in Xamarin development.
- Luis Matos creates a scalable style library in Xamarin Forms.
- Denys Fiediaiev works on pop-up validation in Xamarin with MvvmCross.
- Leomaris Reyes adds simple navigation in Xamarin Forms.
š Design, testing, and best practices
- Derek Comartin explains event sourcing.
- Steve Smith compares DTOs and POCOs.
š¤ Podcasts
- The .NET Core Podcast talks to Barry Luijbregts about picking the right Azure resources.
- Serverless Chats talk to Jeff Hollan about Azure Functions.
- The Adventures in .NET podcast discusses HotChocolate and StrawberryShake.
- The 6-Figure Developer podcast discusses developer velocity with Amanda Silver.
š„ Videos
- Data Exposed talks about how Azure SQL enables real-time analytics.
- Leslie Richardson talks to Beth Massi about the upcoming .NET Conf.
- AzureFunBytes introduces Dapr on Azure.
- The Xamarin Show talks about the MultiConverter and the VariableMultiValueConverter.
- At Technology and Friends, David Giard talks with Julie Lerman.
- Azure Friday builds modern hybrid apps with Azure Arc and Azure Stack.
- The ASP.NET Monsters diagnose startup issues in Azure App Service.
- The ON.NET Show creates GraphQL APIs with Hot Chocolate.
Top comments (0)