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())
FiddleHelper.WriteTable(context.Authors.ToList());
FiddleHelper.WriteTable(context.Books.ToList());
var author = context.Authors
context.Authors.Remove(author);
Console.WriteLine("\n\nAfter Delete\n\n");
FiddleHelper.WriteTable(context.Authors.ToList());
FiddleHelper.WriteTable(context.Books.ToList());
public static void InsertData()
using (var context = new BookStore())
Author author1 = new Author()
new Book() { Title = "Fundamentals of Computer Programming with C#"},
new Book() { Title = "Java: A Beginner's Guide"},
Author author2 = new Author()
new Book() { Title = "SQL: The Ultimate Beginners Guide"}
Author author3 = new Author()
new Book() { Title = "Learn VB.NET"},
new Book() { Title = "C# Fundamentals for Absolute Beginners"},
context.Authors.Add(author1);
context.Authors.Add(author2);
context.Authors.Add(author3);
public class BookStore : DbContext
public BookStore() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Author> Authors { get; set; }
public DbSet<Book> Books { get; set; }
public int BookId { get; set; }
public string Title { get; set; }
public Author Author { get; set; }
public int AuthorId { get; set; }
public string Name { get; set; }
public virtual ICollection<Book> Books { get; set; }