#ASPNETCore updates in .NET 10 Preview 7 | by Dan Roth.
buff.ly/QVE9Rij
#dotnet #dotnet10 #webdev #blazor #json #wasm #apis
ASP.NET Core updates in .NET 1...
#ASPNETCore updates in .NET 10 Preview 7 | by Dan Roth.
buff.ly/QVE9Rij
#dotnet #dotnet10 #webdev #blazor #json #wasm #apis
ASP.NET Core updates in .NET 1...
#ASPNETCore updates in .NET 10 Preview 7 | by Dan Roth.
Reviewing some #aspnetcore Minimal API endpoint code today, and the need to inject every dependency, even a “RedirectManager”, feels like a code smell.
There is an elegance to an MVC endpoint or Razor Page that exists in a self-aware context.
Blogged: Reset Cookies and force new sign-in using ASP.NET Core Identity
https://damienbod.com/2025/08/18/reset-cookies-and-force-new-sign-in-using-asp-net-core-identity/
You've put it off for long enough now...
Read more here:
https://www.devleader.ca/2023/11/13/how-to-build-an-asp-net-core-web-api-a-practical-beginners-tutorial/
Dew Drop Weekly Newsletter - Weeks Ending Aug 8th & 15th, 2025.
Dew Drop Weekly Newsletter - Weeks Ending Aug 8th & 15th, 2025.
buff.ly/fKTGjNJ
#dewdrop #newsletter #aspnetcore #javascript #cloud #azure #blazor #windev #dotnetmaui #xaml #csharp #dotnet #ai #devops #agile #IoT #appdev #podcasts #sqlserver #data #m365
Dew Drop Weekly Newsletter 444...
Get started with dependency injection using IServiceCollection!
Read more here:
https://www.devleader.ca/2024/02/21/iservicecollection-in-c-simplified-beginners-guide-for-dependency-injection/
.NET 10 Preview 7 is now available!
ift.tt/iRn6HoU
#dotnet #aspnetcore #dotnetmaui #blazor #csharp
.NET 10 Preview 7 is now avail...
via @dotnet : .NET 10 Preview 7 is now available!
https://ift.tt/cKpd4xf
#DotNet10 #Preview7 #DotNet #CSharp #ASPNETCore #Blazor #DotNetMAUI #EntityFrameworkCore #WindowsForms #WPF #SoftwareDevelopment #Programming #DeveloperCommunity #TechNews #OpenSource #Rele…
Blogged: Running .NET in the browser without Blazor
https://andrewlock.net/running-dotnet-in-the-browser-without-blazor/
In this post I show how to run .NET in your browser without using Blazor, and instead rely on lower-level abstractions provided by [JSImport] and [JSExport]
We're at it again. I am looking for one contract #ASPNETCore developer for a three month contract. Interested? See the requirements and fill out a simple application here:
https://forms.office.com/r/CehRLhDcWM
This form closes on Wednesday at 5pm CET
We're at it again. I am looking for one contract #ASPNETCore developer for a three month contract. Interested? See the requirements and fill out a simple application here:
https://forms.office.com/r/CehRLhDcWM
This form closes on Wednesday at 5pm CET
I've added Azure SQL change tracking to my set of samples showing how to expose various databases changefeed from ASP.NET Core.
(Also for this one I got to play with Microsoft Graph extension for Bicep to make it credential-less)
#AspNetCore #AzureSql #ChangeTracking
https://github.com/tpeczek/Demo.AspNetCore.Changefeed/pull/18
ICYMI - Coding Short from the Vault:
Coding Shorts: Can You Use VSCode for Full-Time #aspnetcore Dev?
youtube.com/watch?v=71Hx2pfgym8
Built an #aspnetcore tag helper that scans your current page and outputs the assets as preload links in your layout.
This will make your pages feel very snappy and keep images from blocking the processing of the HTML.
Sections in an #aspnetcore app get processed in the order they appear on the Layout, not within the page's lifecycle. That means any elements in the section will only get processed based on their location in the Layout, not as part of the page processing.
Pro tip for #aspnetcore devs: if Blazor hijacks the importmap in your plain-old server-rendered app due to MapStaticAssets, you can opt out of the tag helper on an element by using “!”.
You can also write your own tag helper to bypass this problem.
I really wish #aspnetcore would add the idea of phases to tag helpers; it would help you run certain tag helpers in a specific order. These events also don't have to mutate the state of the HTML but let you store information that ultimately gets called in Process.