You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
786 B
23 lines
786 B
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.data
|
|
{
|
|
public class MySQLContext : DbContext
|
|
{
|
|
public DbSet<Case> Cases { get; set; }
|
|
public DbSet<Child> Children { get; set; }
|
|
public DbSet<Doctor> Doctors { get; set; }
|
|
public DbSet<Image> Images { get; set; }
|
|
public DbSet<Parent> Parents { get; set; }
|
|
public DbSet<Update> Updates { get; set; }
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
optionsBuilder.UseMySQL("server=192.168.0.157;database=covidok;user=covidok;password=covidok");
|
|
}
|
|
}
|
|
}
|
|
|