BookStoreContext.cs 471 B

123456789101112131415161718
  1. using System.Configuration;
  2. using Microsoft.EntityFrameworkCore;
  3. namespace BookStore_2._0
  4. {
  5. class BookStoreContext : DbContext
  6. {
  7. public DbSet<Book> Books { get; set; }
  8. public BookStoreContext()
  9. {
  10. }
  11. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
  12. {
  13. optionsBuilder.UseSqlServer(ConfigurationManager.ConnectionStrings["gr601_kayual"].ConnectionString);
  14. }
  15. }
  16. }