using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using MySql.Data; using MySql.Data.EntityFrameworkCore; using MySql.Data.MySqlClient; using Icarus.Models; namespace Icarus.Database.Contexts { public class ArtistContext : DbContext { public DbSet Artists { get; set; } public ArtistContext(DbContextOptions options) : base (options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity() .ToTable("Artist"); } } }