Skip to content

Instantly share code, notes, and snippets.

View davepcallan's full-sized avatar

Dave Callan davepcallan

View GitHub Profile
@davepcallan
davepcallan / IConfigurationExample.cs
Created January 19, 2025 00:48
ASP.NET IOptions example
// appsettings.json (Configuration)
{
"BankingOptions": {
"SavingsInterestRate": 3.5,
"LoanLimit": 50000,
"MinimumBalance": 1000
}
}
// BankingService.cs (Service that Reads Configuration Directly)
@davepcallan
davepcallan / FizzBuzzParameterizedTestExample.cs
Created January 14, 2025 03:28
xUnit Parameterized Test example using Fizz Buzz algorithm
using Xunit;
using System.Collections.Generic;
public static class FizzBuzz
{
public static string GetOutput(int number)
{
return number switch
{
_ when number % 15 == 0 => "FizzBuzz",
@davepcallan
davepcallan / ReverseLinkedList.cs
Created January 13, 2025 19:06
How to reverse a Linked List in C# + tests
using System;
using Xunit;
public class ListNode
{
public int Value;
public ListNode Next;
public ListNode(int value = 0, ListNode next = null)
{
@davepcallan
davepcallan / EntityFrameworkSequenceDiagram.mmd
Last active January 15, 2025 16:25
Some examples of different diagrams I made with Mermaid
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@davepcallan
davepcallan / KeyedServicesEnumExample.cs
Created January 8, 2025 17:42
Strategy Pattern using .NET Keyed Services examples (one using strings and the other using an enum for the service key)
using Microsoft.AspNetCore.Mvc;
var builder = WebApplication.CreateBuilder(args);
// 1. Define the Pricing Strategy Interface
public interface ITicketPricingStrategy
{
decimal CalculatePrice(int basePrice, int seatTier);
@davepcallan
davepcallan / HotelBookingTemplate.cs
Created January 3, 2025 09:03
Template Method Pattern C# simple example
public abstract class HotelBookingTemplate
{
// Template Method
public void BookRoom()
{
SelectRoom();
ProcessPayment();
ApplyDiscount();
SendBookingConfirmation();
}
@davepcallan
davepcallan / Program.cs
Created January 3, 2025 08:42
.NET Rate limiting simple examples
using Microsoft.AspNetCore.RateLimiting;
using System.Threading.RateLimiting;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddRateLimiter(options =>
{
// 1. Fixed Window Limiter (20 requests per 2 minutes)
// -----------------------------------------------
// |----------------- 2 min -----------------|
@davepcallan
davepcallan / SlowQueryInterceptor.cs
Last active January 2, 2025 19:22
Finding slow queries with Entity Framework Interceptors
using Microsoft.EntityFrameworkCore.Diagnostics;
using System.Data.Common;
namespace EntityFrameworkExamples;
public class SlowQueryInterceptor(ILogger<SlowQueryInterceptor> logger) : DbCommandInterceptor
{
private const int _slowQueryThresholdInMilliseconds = 5; //from config
public override DbDataReader ReaderExecuted(
@davepcallan
davepcallan / CreateOrder.cs
Last active December 18, 2024 00:15
Vertical Slice Architecture example - UseCases -> CreateOrder.cs
// 1. Order Entity
namespace VerticalSliceExample.Domain;
public class Order
{
public int Id { get; set; }
public int CustomerId { get; set; }
public Dictionary<int, int> Products { get; set; } = new(); // ProductId -> Quantity
public decimal TotalAmount { get; private set; }
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
@davepcallan
davepcallan / CountByDotnet9.cs
Created November 30, 2024 15:50
.NET 9 new LINQ CountBy compared to existing approaches benchmarks
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Columns;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Environments;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Reports;
using System;
using System.Collections.Generic;
using System.Linq;