Log In

Practical ASP.NET

  • We need you to build an online store
  • Prototype the frontend
  • Hook it up to the backend
  • Making it real (add a database)
    • Impressive, but about that data...
    • A spot of refactoring before we continue
    • Refactor out business logic out of the controller
    • Core Concept - EF Core and Models
    • Configure EF Core and define the first Entity
    • Core Concept - Dependency Injection
    • Bring in product data from the database
  • Time to implement the shopping cart
  • Viewing your cart and checking out
  • Checkout
  • Time to let our users log in

Making it real (add a database)

In this module...

Impressive, but about that data...
A spot of refactoring before we continue
Refactor out business logic out of the controller
Core Concept - EF Core and Models
Configure EF Core and define the first Entity
Core Concept - Dependency Injection
Bring in product data from the database