using Microsoft.EntityFrameworkCore; using System.Configuration; namespace WpfApp1 { class BookStoreContext : DbContext { public DbSet Books { get; set; } public BookStoreContext() { } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseSqlServer(ConfigurationManager.ConnectionStrings["gr606_tuivl"].ConnectionString); } } }