20 lines
420 B
C#
20 lines
420 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
class AutoCatDbContext: DbContext
|
|
{
|
|
public DbSet<User> Users { get; private set; }
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
optionsBuilder.UseSqlite("filename=autocat.db");
|
|
}
|
|
}
|
|
}
|