Skip to content

Instantly share code, notes, and snippets.

View M3ales's full-sized avatar

Matthew M3ales

  • Luna Software Solutions
  • South Africa
  • 06:16 (UTC +02:00)
View GitHub Profile
@Espleth
Espleth / MigrationsExtensions.cs
Created November 7, 2024 20:33
EF Core Code-first extension to migrate C# enums from ints in Postgres to PG enums
using Microsoft.EntityFrameworkCore.Migrations;
using Npgsql.NameTranslation;
namespace Celestial.Database.Extensions;
public static class MigrationsExtensions
{
/// <summary>
/// Convert int column to PG enum column using c# enum which was previously mapped to this column
/// </summary>