mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
9 lines
269 B
C#
9 lines
269 B
C#
|
|
using Microsoft.EntityFrameworkCore.Design;
|
||
|
|
|
||
|
|
namespace DiscImageChef.Database
|
||
|
|
{
|
||
|
|
public class DicContextFactory : IDesignTimeDbContextFactory<DicContext>
|
||
|
|
{
|
||
|
|
public DicContext CreateDbContext(string[] args) => DicContext.Create("discimagechef.db");
|
||
|
|
}
|
||
|
|
}
|