15 lines
304 B
C#
15 lines
304 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace AutoCatCore.Model
|
|
{
|
|
class AutoCatDbContext: DbContext
|
|
{
|
|
public DbSet<User> Users { get; private set; }
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
optionsBuilder.UseSqlite("filename=autocat.db");
|
|
}
|
|
}
|
|
}
|