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