mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-30 14:49:31 +02:00
21 lines
555 B
C#
21 lines
555 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using MTWireGuard.Application.Models.Mikrotik;
|
|
|
|
namespace MTWireGuard.Application
|
|
{
|
|
public class DBContext : DbContext
|
|
{
|
|
public DbSet<WGPeerDBModel> Users { get; set; }
|
|
|
|
public string DbPath { get; }
|
|
|
|
public DBContext()
|
|
{
|
|
DbPath = Path.Join(AppDomain.CurrentDomain.BaseDirectory, "MikrotikWireguard.db");
|
|
}
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder options)
|
|
=> options.UseSqlite($"Data Source={DbPath}");
|
|
}
|
|
|
|
}
|