using CoviDok.Data.Model; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CoviDok.Data.MySQL { public class MySqlContext : DbContext { public DbSet Assistants { get; set; } public DbSet Doctors { get; set; } public DbSet Parents { get; set; } public DbSet Children { get; set; } public DbSet Cases { get; set; } public DbSet Updates { get; set; } public DbSet RoleUsers { get; set; } public DbSet Images { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseMySQL("server=mysql;database=covidok;user=covidok;password=covidok"); } } }