Skip to content

Instantly share code, notes, and snippets.

View Espleth's full-sized avatar

Artem Sychev Espleth

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>