using System.Data.Entity;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
public static void Main()
using (var context = new BookStore())
context.Database.Log = Console.WriteLine;
var authors = context.Authors
public static void InsertData()
using (var context = new BookStore())
for(int i = 1; i < 1000; i++)
Author author = new Author()
context.Authors.Add(author);
public class BookStore : DbContext
public BookStore() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Author> Authors { get; set; }
public int AuthorId { get; set; }
public string Name { get; set; }