frameworks
.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1444 articles Updated Page 31 of 58
Browse additional .NET Core articles from the DotNetNews archive.
.NET Core articles
Page 31 of 58
Newest first
-
IEnumerable vs IQueryable in C#: The Key Differences
medium.com Issue #279
If you’ve been coding in C# for a while, you’ve probably bumped into IEnumerable and IQueryable.
-
The Hidden Performance Traps in C# You’re Probably Ignoring
medium.com Issue #279
C# and the .NET runtime provide a modern, safe, and powerful development platform. However, performance pitfalls are everywhere — even in…
-
How I Built a Private ChatGPT That Knows Everything About My Company
ai.plainenglish.io Issue #279
We will be creating Local Chat GPT for organization which will answer smartly based on internal data of organization Continue reading on Artificial Intelligence in Plain English »
-
From JavaScript to C#: A Developer’s Guide to Transitioning from JavaScript to C# and .NET
javascript.plainenglish.io Issue #279
As a JavaScript developer, you might be used to dynamic typing, flexible syntax, and event-driven programming. However, what happens when… Continue reading on JavaScript in Plain English »
-
Why You Should Care About C#’s ‘Nullable Reference Types’
medium.com Issue #279
and How They Help Prevent Null-Related Errors Continue reading on Coinmonks »
-
Secure File Access in .NET Core: Avoiding Leaks and Protecting Sensitive Data
medium.com Issue #279
Secure your .NET Core apps by mastering file access controls, secrets management, and leak prevention. Continue reading on .Net Programming »
-
The Practical .NET Guide to AI & LLM: Introduction
medium.com Issue #279
Model-agnostic guide to integrating LLMs in .NET — patterns, DI, provider abstraction, and security best practices.
-
Dependency Injection (DI) in .NET Core
medium.com Issue #279
For example : Continue reading on easydotnet »
-
Partial View vs ViewComponent in ASP.NET MVC/Core – A Complete Guide
c-sharpcorner.com Issue #279
Unlock the secrets of Partial Views and ViewComponents in ASP.NET MVC/Core! This guide dives deep into their differences, exploring usage, performance, and best-use cases. Learn when to use each for o...
-
Top 5 Logging Frameworks for .NET Developers
malshikay.medium.com Issue #279
Best logging tools for .NET developers
-
Why ValueTask Can Save You from Async Overhead
mariemoalla.medium.com Issue #279
Asynchronous programming in C# is built on top of the Task and async/await model. For most scenarios, using Task is perfectly fine. But if…
-
Address Resolution Protocol (ARP) in Networking: How It Works
c-sharpcorner.com Issue #279
Unlock the secrets of ARP (Address Resolution Protocol)! This guide explains how ARP translates IP addresses to MAC addresses, enabling seamless communication on local networks. Learn about ARP reques...
-
Best Practices for Configuration and Secrets Management in .NET
medium.com Issue #279
How to Securely Store and Access App Settings in ASP.NET Core?
-
Bridging the Gap: A Professional Solution for Hosting a Web Server in .NET MAUI
medium.com Issue #279
For years, a critical gap has existed within Microsoft’s cross-platform strategy. While frameworks like Flutter thrive with rich…
-
The $2,000 Line of C# I Shouldn’t Have Written
towardsdev.com Issue #279
Why This Blog Matters Continue reading on Towards Dev »
-
How To Optimize EF Core Query Performance With Compiled Queries
medium.com Issue #279
Entity Framework Core’s compiled queries are one of the most underutilized performance optimization features available to .NET developers…
-
The case of the crash on a null pointer even though we checked it for null
devblogs.microsoft.com Issue #279
A colleague was investigating a crash. The stack at the point of the crash looks like this: contoso!winrt::impl::consume_Windows_Foundation_Collections_IVectorView< winrt::Windows::Foundation::Coll...
-
Introduction To Building Distributed Applications with Microsoft Orleans
learn-code-learn.medium.com Issue #279
Microsoft Orleans (also known as Orleans .NET) is a cross-platform framework that helps developers build distributed, scalable, and…
-
One Trick To Improve EF Core Performance Using Query Splitting
medium.com Issue #279
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
Data Seeding in ASP.NET Core the Right Way
medium.com Issue #279
Data seeding is the secret sauce that turns empty databases into playgrounds for testing and development.
-
What is the difference between linear and non-linear data structures?
c-sharpcorner.com Issue #279
Unlock the power of Data Structures and Algorithms (DSA) by understanding the core difference between linear and non-linear data structures. This guide breaks down the sequential nature of arrays, lin...
-
Using and authoring .NET tools
andrewlock.net Issue #279
In this post I describe some of the complexities around authoring .NET tools, specifically around supporting multiple .NET runtimes and testing in CI
-
How ValueTask Boosts .NET Performance with Zero Allocations
itnext.io Issue #277
Slash memory overhead in async C# code with practical ValueTask examples for high-throughput APIs Continue reading on ITNEXT »
-
Background Jobs in .NET: Hangfire vs Quartz.NET
medium.com Issue #277
Choosing the Right Job Scheduler for Your .NET Project
-
Unit of Work in EF Core: Managing Transactions the Right Way
medium.com Issue #277
Building a Unit of Work with EF Core