PetShop is an Asp.Net Core MVC application of an online catalog for a pet shop.
Customers can view the catalog and navigate the site by selecting a category, view the details of the animal and leave comments on the animals.
An admin can also edit, add and delete an animal, as well as edit and delete comments.
The application uses Microsoft's IdentityUser Class to authenticate users.
The application is divided into 4 separate projects (Client, Data, Models, Services), with relevant references.
So each project is responsible for a different part.
The application saves all the data of the animals, pictures, comments, categories, etc. in a database on SQL Server (MMSQL)
The application manages another database called authentication, on which all the information related to users is saved such as email, phone, username and password, etc. (only the hash of the password is saved in the database).
- .Net Core
- ASP.Net Core MVC
- SQL Server
- Bootstrap
- Jquery (jquery-validation, jquery-validation-unobtrusive)
- Pull from here
- Add a migration and update the local database (for the Authentication DB)
- In the client project in the Program.cs file add the following lines of code below this line of code
"var app = builder.Build();" (Line 38):
using (var scop = app.Services.CreateScope())
{
var ctx = scop.ServiceProvider.GetRequiredService();
ctx.Database.EnsureDeleted();
ctx.Database.EnsureCreated();
} - Then when running the project, the local database (for the PetShop DB) will be created (code first), after the database is created, the above lines can be deleted
- Compile
- Run the exe
