Repository Pattern in .NET Core: Implementation Guide

The Repository pattern is one of those patterns that generates debate. Some say it’s essential, others call it unnecessary abstraction over EF Core. Here’s my pragmatic take on when and how to use it. What is the Repository Pattern? A repository abstracts data access, providing a collection-like interface to your domain objects. Instead of calling […]

Read more →

Node.js REST API with Express: Complete Guide

Express is still the go-to framework for Node.js APIs. It’s minimal, flexible, and has a massive ecosystem. Here’s how to build a production-ready REST API from scratch. Project Setup Basic Server Organizing Routes Input Validation Never trust user input. Use express-validator: Async Error Handling References Express.js Documentation Node.js Best Practices

Read more →

LK DevConf 2019: Building Modern Web Applications

LK DevConf 2019 was a blast! This local developer conference in Letterkenny brought together speakers from across Ireland to share knowledge about modern development practices. My Session: Modern .NET Development I presented a session on building modern web applications with ASP.NET Core. The focus was on practical patterns that work in real projects: Clean Architecture […]

Read more →