✕ Clear all filters
15 articles
▶ Videos →

📰 Dev.to · Libin Tom Baby

15 articles · Updated every 3 hours · View all reads

All Articles 188,230Blog Posts 170,395Tech Tutorials 50,366Research Papers 36,763News 23,117 ⚡ AI Lessons
The Middleware Pipeline in ASP.NET Core — How It Really Works
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 5mo ago
The Middleware Pipeline in ASP.NET Core — How It Really Works
Use, Run, Map, short-circuit, ordering, custom middleware Every HTTP request in ASP.NET Core...
IAsyncEnumerable Explained — Async Streams in .NET
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 5mo ago
IAsyncEnumerable Explained — Async Streams in .NET
IAsyncEnumerable, yield return, cancellation tokens, vs IEnumerable, real-world streaming Most...
Record Types in C# — Immutability, Equality, and When to Use Them
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 5mo ago
Record Types in C# — Immutability, Equality, and When to Use Them
record, record struct, init, with expressions, value equality Record Types in...
IDisposable, Finalizers, and the Dispose Pattern — The Complete Guide for .NET Developers
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 6mo ago
IDisposable, Finalizers, and the Dispose Pattern — The Complete Guide for .NET Developers
Learn how IDisposable, finalizers, and the Dispose Pattern work in .NET. Includes examples, best practices, SafeHandle usage, and interview-ready explanations.
Async/Await in C# — A Deep Dive Into How Asynchronous Programming Really Works
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 6mo ago
Async/Await in C# — A Deep Dive Into How Asynchronous Programming Really Works
A deep dive into async/await in C#. Learn how asynchronous programming works under the hood, with real-world examples, pitfalls, and interview-ready explanation
Dependency Injection Lifetime for DbContext in .NET: Choosing the Right Scope
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 7mo ago
Dependency Injection Lifetime for DbContext in .NET: Choosing the Right Scope
Learn why DbContext should be registered as Scoped in .NET. Understand DI lifetimes, thread safety, unit-of-work patterns, and real-world examples.”**
What the 'sealed' Keyword Means in C# — And When You Should Use It
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 7mo ago
What the 'sealed' Keyword Means in C# — And When You Should Use It
Learn what the sealed keyword does in C#, including sealed classes, sealed methods, performance benefits, and real-world scenarios for using it.
Difference Between 'const' and 'readonly' in C# — The Definitive, Practical Guide
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 7mo ago
Difference Between 'const' and 'readonly' in C# — The Definitive, Practical Guide
Learn the difference between const and readonly in C#. Includes definitions, IL behavior, performance notes, and real-world scenarios to choose the right one.
IQueryable vs IEnumerable in C# — The Practical, No‑Nonsense Guide
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 7mo ago
IQueryable vs IEnumerable in C# — The Practical, No‑Nonsense Guide
Understand the difference between IQueryable and IEnumerable in C#. Learn execution behavior, EF Core examples, performance implications, and when to use each.
Interface vs Abstract Class in C# — What’s the Difference and When Should You Use Each?
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 7mo ago
Interface vs Abstract Class in C# — What’s the Difference and When Should You Use Each?
Learn the difference between interfaces and abstract classes in C#. Includes definitions, examples, real-world scenarios, and clear rules for choosing the right
FirstOrDefault vs SingleOrDefault in C# — The Complete, Practical Guide
Dev.to · Libin Tom Baby 🔧 Backend Engineering ⚡ AI Lesson 7mo ago
FirstOrDefault vs SingleOrDefault in C# — The Complete, Practical Guide
Understand the real difference between FirstOrDefault and SingleOrDefault in C#. Includes examples, EF Core behavior, performance notes, and when to use each.