Skip to content

Instantly share code, notes, and snippets.

View mrmyroll2's full-sized avatar
🎯
Focusing

Amierul Basyar Yusoff mrmyroll2

🎯
Focusing
View GitHub Profile
@mrmyroll2
mrmyroll2 / generate-migration.ps1
Last active May 6, 2025 04:28
PowerShell script to automate EF Core migration and SQL script generation
<#
.SYNOPSIS
EF Core Migration Automation Script
.DESCRIPTION
Automates:
1. Creating a new EF Core migration
2. Inserting an <auto-generated /> tag into the migration file
3. Generating the corresponding SQL script
@mrmyroll2
mrmyroll2 / CacheService.cs
Last active March 29, 2025 18:54
Error implementing `HybridCache` and `IDistributedCache` for query caching with MediatR
internal sealed class CacheService(
IMemoryCache memoryCache,
HybridCache hybridCache,
IDistributedCache distributedCache
) : ICacheService
{
public async Task<T?> GetOrCreateAsync<T>(
string key,
Func<CancellationToken, Task<T>> factory,
TimeSpan? expiration = null,