Ardalis is Steve Smith
Proven Expertise
Steve Smith has been recognized by Microsoft as a Most Valuable Professional (MVP) since 2002, and was a member of Microsoft’s Regional Director program for 10 years. He is also a founding member of the ASPInsiders, an external advisory group for the ASP.NET product team. As Microsoft launches their new version of ASP.NET, he has been contributing to the product and authoring many sections of the official documentation on GitHub.
How can I help you
I offer various different professional services that includes private training for corporate customers, accelerate your project with a bit of mentoring or even a home like inspection for your code and a software application.
Mentoring
You or your team can benefit from Steve’s experience with ASP.NET using SOLID development principles, proven design patterns, and Domain-Driven Design (DDD).
“Our team could spend many hours with other developers figuring out a problem or best practice, or we could set up a meeting with Steve.”
“[Steve] is able to quickly understand the problems we are trying to solve and then works with us to solve the problems.”
Online Training
Steve has published many courses on Pluralsight, covering topics from N-Tier architecture to Refactoring to Domain-Driven Design. You can also follow Steve on YouTube for more online video content. See what others say about Steve’s courses.
Assessments
Quickly learn where your application could be improved with an application assessment from Steve. An assessment will reveal “low hanging fruit” that will add the greatest value for the least effort, and can identify security and performance issues as well as maintainability anti-patterns and technical debt. Read more…
Workshops
Look for Steve’s workshops on software craftsmanship, ASP.NET 5, and Domain-Driven Design at an upcoming conference, or schedule one for your team. Contact Steve for more details.
Speaking Engagements
Steve is a regular speaker at tech conferences like Codemash, Stir Trek, DevIntersection, and more. You can find some of his past presentations on SlideShare and SpeakerDeck.
Watch Steve discuss Software Quality on Channel 9 with Seth Juarez:
Interviews and Podcasts
Listen to interviews with Steve Smith on various industry shows and podcasts.
Latest Articles
I keep wanting to do this and forgetting how, so I'm writing it down. Here's how to embed a YouTube video in a GitHub ReadMe markdown file. Thanks for this Stack Overflow answer for the tip. Step 1: Get the YouTube Video ID The YouTube video ID is the part of the URL after the . For example, in the URL , the video ID is . You'll need that for the next step. Step 2: Embed the Video To embed the…
Keep Reading →
I'm thrilled to announce the release of my latest Pluralsight course, Refactoring to SOLID C# Code. This course is designed for software developers, architects, and anyone interested in enhancing their coding skills, especially in the C# programming language. Description Legacy code is often difficult to maintain and extend. In this course, Refactoring to SOLID C# Code, you’ll learn to apply…
Keep Reading →
Entity Framework Core: Understanding Migrations, Snapshots, and Synchronization Entity Framework Core (EF Core) is a powerful tool for managing database schema migrations and synchronization in .NET projects. This article aims to explore the core components that EF Core uses to maintain this sync: migration files, model snapshots, and a special database table. We'll also clarify the roles of and…
Keep Reading →
Introduction In the exhilarating infancy stages of a software development project, teams are marked by agility, prompt decision-making, and a zest for delivering valuable features. Yet, as projects gain complexity and scale, many fall prey to a lesser-known but insidious anti-pattern: Process Bloat. This bureaucratic monster not only hampers innovation but becomes a silent killer of developer…
Keep Reading →
Lean Software Development is an agile project management and product development framework that originated from Lean manufacturing principles. It focuses on delivering value to the customer by optimizing resources, workflows, and processes. Below is a breakdown of its core principles: 1. Eliminate Waste The first principle of Lean Software Development is to eliminate waste, a concept borrowed from…
Keep Reading →
If you're interested in building distributed, scalable, and robust applications in C#, you may have heard of MassTransit. This open-source messaging framework simplifies working with message brokers like RabbitMQ and Azure Service Bus, allowing you to focus more on business logic and less on infrastructure concerns. What Is MassTransit? MassTransit is a free, open-source distributed application…
Keep Reading →
When it comes to effective software development strategies, two distinct approaches often lock horns: Trunk-Based Development and Long-Lived Feature Branches. Each has its unique merits and challenges, and knowing which one to adopt can significantly influence your project's success. In this post, we'll delve deep into the pros and cons of both approaches and even show you a C# example…
Keep Reading →
Introduction In the world of software applications, email sending functionalities are indispensable. From password resets to notifications, you can't afford to let a hiccup in the network or an SMTP server issue derail you. So how do you ensure reliability in email operations? In this post, we'll dive into creating a resilient email sending method in .NET using the class and incorporating retry…
Keep Reading →
I've just published a new version of my Clean Architecture Solution Template for ASP.NET Core applications. This is version 8 of the template, though to be clear it is still targeting the current version of .NET (.NET 7). I'll create another update once .NET 8 ships in November 2023. What's New This version introduces some pretty major changes, which I'll highlight here. The biggest ones have to…
Keep Reading →
Unit testing is a crucial part of modern software development. It ensures that code is working as intended and can be a lifesaver when refactoring or adding new features. It's like having a friendly guard dog that barks if anything suspicious is going on in your code! In the context of .NET, there are some unique considerations and tools that can help make your unit tests even more effective. In…
Keep Reading →