{"id":23519780,"url":"https://github.com/ramonbecker/workshop-asp-net-core-mvc","last_synced_at":"2025-10-04T14:57:33.656Z","repository":{"id":246042545,"uuid":"414011291","full_name":"RamonBecker/workshop-asp-net-core-mvc","owner":"RamonBecker","description":null,"archived":false,"fork":false,"pushed_at":"2021-10-18T22:58:30.000Z","size":603,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-14T02:10:21.879Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RamonBecker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-05T23:43:22.000Z","updated_at":"2021-10-18T22:58:32.000Z","dependencies_parsed_at":"2024-06-25T14:44:00.352Z","dependency_job_id":"e6bf9963-2d98-4f06-9339-29c600fd4fae","html_url":"https://github.com/RamonBecker/workshop-asp-net-core-mvc","commit_stats":null,"previous_names":["ramonbecker/workshop-asp-net-core-mvc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RamonBecker/workshop-asp-net-core-mvc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2Fworkshop-asp-net-core-mvc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2Fworkshop-asp-net-core-mvc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2Fworkshop-asp-net-core-mvc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2Fworkshop-asp-net-core-mvc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RamonBecker","download_url":"https://codeload.github.com/RamonBecker/workshop-asp-net-core-mvc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamonBecker%2Fworkshop-asp-net-core-mvc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278328167,"owners_count":25968900,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-25T16:10:30.187Z","updated_at":"2025-10-04T14:57:33.623Z","avatar_url":"https://github.com/RamonBecker.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# workshop-asp-net-core-mvc\n\n## :information_source: Information \n\nThe project was developed during the C# programming course by instructor Nelio Alves. The aim of the project was to develop a sales system using the ASP .NET CORE Framework. For data storage, the MYSQL database was used. The sales system is composed of the models of: departments, salespeople and sales records. Simple grouped queries of sales records were implemented to facilitate the search for sales and their respective departments.\n\n## ⚠️ Prerequisite\n![ASPNET Badge](https://img.shields.io/badge/.NET-512BD4?style=for-the-badge\u0026logo=dotnet\u0026logoColor=white)\n\n![Mysql Badge](https://img.shields.io/badge/MySQL-00000F?style=for-the-badge\u0026logo=mysql\u0026logoColor=white)\n\n![Bootstrap Badge](https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge\u0026logo=bootstrap\u0026logoColor=white)\n\n![C# Badge](https://img.shields.io/badge/C%23-239120?style=for-the-badge\u0026logo=c-sharp\u0026logoColor=white)\n\n![Html Badge](https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge\u0026logo=html5\u0026logoColor=white)\n\n## Demo\n\n![bandicam 2021-10-18 19-24-20-158](https://user-images.githubusercontent.com/44611131/137817323-8e2a4c77-f81e-4f2e-af7b-c3cde732f3e1.gif)\n\n\n\n## :rocket: Installation\n\nTo install the project you must install mysql on your machine.\n\n## ⚙️ Installing MySQL\n\nEnter the following commands in the terminal.\n\n```\nsudo apt update\nsudo apt install mysql-server\n\n```\n### Configuring MySQL\n\nFor new installations, you will want to run the security script that is included. This changes some of the less secure default options for things like root logins and example users. Enter the command below.\n\n```\nsudo mysql_secure_installation\n```\nThis will take you through a series of prompts where you can make some changes to the security options of your MySQL installation. The first prompt will ask you if you want to configure the Validate Password Plugin, which can be used to test the strength of your MySQL password. Regardless of your choice, the next prompt will be to set the password for the MySQL root user. Sign in and then confirm a secure password of your choice.\n\nFrom there, you can press Y and then ENTER to accept the default answers for all subsequent questions. This will remove some anonymous users and the test database, disable remote login for root, and load all of these new rules so that MySQL immediately respects the changes you made.\n\n### Testing MySQL\n\nTo see if MYSQL is running, type the following command.\n\n```\nsystemctl status mysql.service\n```\n\nIf MySQL is not running, you can start it with the following command.\n```\nsudo systemctl start mysql\n\nNow try to connect your root user to MySQL.\n```\nmysql -u root -p\n\n### Attention when creating the database\n\nAt the visual studio terminal enter the following command to create the database. But first check your username in the MYSQL database in the file: appsettings.json\n\nType the following:\n```\nUpdate-Database\n```\nIf there is any conflict with the migrations, delete them and create them again using the command\n```\nAdd-Migration Your message\n\nUpdate-Database\n```\n\n![](https://img.shields.io/badge/Linux-FCC624?style=for-the-badge\u0026logo=linux\u0026logoColor=black)\n\n\n```\ngit clone https://github.com/RamonBecker/workshop-asp-net-core-mvc.git\n```\n\n![](https://img.shields.io/badge/Windows-0078D6?style=for-the-badge\u0026logo=windows\u0026logoColor=white)\n```\ngit clone https://github.com/RamonBecker/workshop-asp-net-core-mvc.git\nor install github https://desktop.github.com/ \n```\n\n## :zap: Technologies\t\n\n- ASP .NET CORE\n- MYSQL\n- BOOTSTRAP\n- RAZOR PAGES\n\n\n## :memo: Developed features\n\n- [x] CRUD Departments\n- [x] CRUD Saller\n- [x] Custom Search for SalesRecords\n\n\n## :technologist:\t Author\n\nBy Ramon Becker 👋🏽 Get in touch!\n\n\n\n[\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/github.svg' alt='github' height='40'\u003e](https://github.com/RamonBecker)  [\u003cimg src='https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg' alt='linkedin' height='40'\u003e](https://www.linkedin.com/in/https://www.linkedin.com/in/ramon-becker-da-silva-96b81b141//)\n![Gmail Badge](https://img.shields.io/badge/-ramonbecker68@gmail.com-c14438?style=flat-square\u0026logo=Gmail\u0026logoColor=white\u0026link=mailto:ramonbecker68@gmail.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framonbecker%2Fworkshop-asp-net-core-mvc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framonbecker%2Fworkshop-asp-net-core-mvc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framonbecker%2Fworkshop-asp-net-core-mvc/lists"}