mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-12 21:37:53 -04:00
10 lines
300 B
C#
10 lines
300 B
C#
using Cleanuparr.Persistence;
|
|
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
namespace Cleanuparr.Api.DesignTime;
|
|
|
|
public sealed class EventsContextFactory : IDesignTimeDbContextFactory<EventsContext>
|
|
{
|
|
public EventsContext CreateDbContext(string[] args) => EventsContext.CreateStaticInstance();
|
|
}
|