Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • ASP.NET Core 2 Fundamentals
  • Toc
  • feedback
ASP.NET Core 2 Fundamentals

ASP.NET Core 2 Fundamentals

By : Gumus, T. S. Ragupathi
2 (1)
close
ASP.NET Core 2 Fundamentals

ASP.NET Core 2 Fundamentals

2 (1)
By: Gumus, T. S. Ragupathi

Overview of this book

The book sets the stage with an introduction to web applications and helps you build an understanding of the tried-and-true MVC architecture. You learn all about views, from what is the Razor view engine to tagging helpers. You gain insight into what models are, how to bind them, and how to migrate database using the correct model. As you get comfortable with the world of ASP.NET, you learn about validation and routing. You also learn the advanced concepts, such as designing Rest Buy (a RESTful shopping cart application), creating entities for it, and creating EF context and migrations. By the time you are done reading the book, you will be able to optimally use ASP.NET to develop, unit test, and deploy applications like a pro.
Table of Contents (10 chapters)
close

Creating the Entities


Now that we have our dependencies clarified, we can start creating our entities. You can delete existing Class1.cs files in the libraries.

Follow these steps to create the entities for Rest Buy:

  1. Create an Entities folder in the RestBuy project as shown in the following screenshot:
  1. Inside the Entities folder we need to create four classes:
    • BaseEntity: This is the base class for all our entities
    • Order: This class will contain the logic behind the ordering of products.
    • OrderItem: This class is for containing order details.
    • Product: This class is for containing details of the products.
    • StockAmount: This class represents how many products are left in the store of a type.
  2. Have this code inside BaseEntity:

Note

Go to https://goo.gl/E8DaGb to access the code.

using System;
using System.Collections.Generic;
using System.Text;
namespace RestBuy.Entities
public abstract class BaseEntity
{
  protected int id;
  public int Id => this.id;
}
}
  1. Have this code inside Order:

Note

Go to https...

Unlock full access

Continue reading for free

A Packt free trial gives you instant online access to our library of over 7000 practical eBooks and videos, constantly updated with the latest in tech
bookmark search playlist font-size

Change the font size

margin-width

Change margin width

day-mode

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Delete Bookmark

Modal Close icon
Are you sure you want to delete it?
Cancel
Yes, Delete