Model is a collection of classes to interact with the database.
To create a data model for our application, we will start with the following two entities.
There's a one-to-many relationship between Author
and Book
entities. In other words, an author can write any number of books, and a book can be written by only one author.
We will create a class called Author
and add the following code.
public class Author
{
public int AuthorId { get; set; }
public string Name { get; set; }
public virtual ICollection<Book> Books { get; set; }
}
The AuthorId
property will become the primary key column of the database table that corresponds to this class. By default, Entity Framework interprets a property that's named Id
or <classname>Id
as the primary key.
Books
property is a navigation property. Navigation properties hold other entities related to this entity.Books
property of an Author
entity will hold all of the Book
entities related to that Author
entity.Author
row in the database has two related Book
rows, that Author
entity's Books
navigation property will contain those two Book
entities.Now let's add another entity class Book
, and replace the following code.
public class Book
{
public int Id { get; set; }
public string Title { get; set; }
public int NoOfPages { get; set; }
public int AuthorId { get; set; }
public Author Author { get; set; }
}
Id
property will be the primary key; this entity uses the Id
pattern instead of <classname>Id
by itself, as you saw in the Author
entity.The database context class provides the main functionality to coordinate Entity Framework with a given data model.
Microsoft.EntityFrameworkCore.DbContext
class.So let's create a folder in your project by right-clicking your project in Solution Explorer and clicking Add > New Folder. Name the folder DAL (Data Access Layer). In that folder, create a new class file named BookStore.cs, and replace the following code.
public class BookStore : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlServer(@"Data Source=(localdb)\ProjectsV13;Initial Catalog=BookStoreDb;");
}
public DbSet<Author> Authors { get; set; }
public DbSet<Book> Books { get; set; }
}
This code creates a DbSet
property for each entity set. In Entity Framework terminology, an entity set typically corresponds to a database table, and an entity corresponds to a row in the table.
The Entity Framework will create an empty database for you. So we need to write a method called after the database is created to populate it with test data.
public static void Initialize()
{
using (BookStore context = new BookStore())
{
context.Database.EnsureDeleted();
context.Database.EnsureCreated();
var authors = new List<Author>
{
new Author { Name="Carson Alexander" },
new Author { Name="Meredith Alonso" },
new Author { Name="Arturo Anand" },
new Author { Name="Gytis Barzdukas"},
new Author { Name="Yan Li" },
};
authors.ForEach(a => context.Authors.Add(a));
context.SaveChanges();
var books = new List<Book>
{
new Book { Title = "Introduction to Machine Learning", NoOfPages = 530, AuthorId = 1 },
new Book { Title = "Advanced Topics in Machine Learning", NoOfPages = 380, AuthorId = 1 },
new Book { Title = "Introduction to Computing", NoOfPages = 1171, AuthorId = 1 },
new Book { Title = "Introduction to Microeconomics", NoOfPages = 437, AuthorId = 2 },
new Book { Title = "Calculus I", NoOfPages = 1477, AuthorId = 3 },
new Book { Title = "Calculus II", NoOfPages = 1571, AuthorId = 3 },
new Book { Title = "Trigonometry Basics", NoOfPages = 540, AuthorId = 4 },
new Book { Title = "Special Topics in Trigonometry", NoOfPages = 490, AuthorId = 4 },
new Book { Title = "Advanced Topics in Mathematics", NoOfPages = 895, AuthorId = 4 },
new Book { Title = "Introduction to AI", NoOfPages = 530, AuthorId = 4 },
};
books.ForEach(b => context.Books.Add(b));
context.SaveChanges();
}
}
In the Main
method, replace the following code.
static void Main(string[] args)
{
Initialize();
using (var context = new BookStore())
{
var authors = context.Authors.ToList();
var books = context.Books.ToList();
Console.WriteLine("Total Authors: {0}", authors.Count);
Console.WriteLine("Total Books: {0}", books.Count);
}
}
Now when you run your application, you will see the following output.
Total Authors: 5
Total Books: 10