blob: ceeed6012385f0c3c4a3296b40b139805d82de8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using Microsoft.EntityFrameworkCore;
using ShareGuard.Web.DbModels;
namespace ShareGuard.Web;
public class Database : DbContext
{
public DbSet<Link> Links { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlite("Data Source=shareguard.db");
}
}
|