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