using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using backend.Models; public class DispenserContext : DbContext { public DbSet DispenserLogs { get; set; } public DbSet Users { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder options) { options.UseSqlite("DataSource=db.sqlite3"); } }