{"id":15002973,"url":"https://github.com/anandugnath/coremvc_crud","last_synced_at":"2026-03-14T23:35:34.822Z","repository":{"id":209839494,"uuid":"725019304","full_name":"anandugnath/CoreMVC_CRUD","owner":"anandugnath","description":"crud operations using  asp.Net MVC Core Using MSSQL, Storedprocedure","archived":false,"fork":false,"pushed_at":"2023-12-15T07:18:45.000Z","size":991,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-18T13:56:49.505Z","etag":null,"topics":["core","crud","crud-application","css","html","jquery","mssql-database","mvc-core","stored-procedures","webapp"],"latest_commit_sha":null,"homepage":"","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/anandugnath.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}},"created_at":"2023-11-29T09:17:33.000Z","updated_at":"2023-12-08T10:50:25.000Z","dependencies_parsed_at":"2023-12-13T13:41:57.821Z","dependency_job_id":null,"html_url":"https://github.com/anandugnath/CoreMVC_CRUD","commit_stats":null,"previous_names":["anandugnath/coremvc_crud"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anandugnath%2FCoreMVC_CRUD","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anandugnath%2FCoreMVC_CRUD/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anandugnath%2FCoreMVC_CRUD/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anandugnath%2FCoreMVC_CRUD/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anandugnath","download_url":"https://codeload.github.com/anandugnath/CoreMVC_CRUD/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243153721,"owners_count":20244805,"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","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":["core","crud","crud-application","css","html","jquery","mssql-database","mvc-core","stored-procedures","webapp"],"created_at":"2024-09-24T18:54:29.895Z","updated_at":"2025-12-26T00:14:25.933Z","avatar_url":"https://github.com/anandugnath.png","language":"C#","funding_links":["https://www.buymeacoffee.com/anandugnath"],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://www.buymeacoffee.com/anandugnath\" target=\"_blank\"\u003e\u003cimg src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\" alt=\"Buy Me A Coffee\" style=\"height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;\" \u003e\u003c/a\u003e\n\n\u003ch2\u003e1.Introduction\u003c/h2\u003e\nIn Project, we will learn CRUD Operations in ASP.NET Core 3.1. We will use StoredProcedure to interact with sql-server database and for performing CRUD operations..\n\u003cbr/\u003e\n\u003cbr/\u003e\n\u003cb\u003eDependencies:\u003c/b\u003e It contains all the installed NuGet packages. We can manage the NuGet packages by right clicking on it.\n\u003cbr/\u003e\n\u003cb\u003eProperties:\u003c/b\u003e It contains launchSettings.json file which has visual studio profiles, iis and debug setting.\n\u003cbr/\u003e\n\u003cb\u003ewwwroot folder:\u003c/b\u003e It is the web root folder of asp.net core application where we can put all the static files such as  javascript , css.\n\u003cbr/\u003e\n\u003cb\u003eControllers:\u003c/b\u003e It contails all the controller class we create in our asp.net core mvc application.\n\u003cbr/\u003e\n\u003cb\u003eModels:\u003c/b\u003e We can put all the model or view model classes inside this folder.\n\u003cbr/\u003e\n\u003cb\u003eViews:\u003c/b\u003e We can add views for certain actions methods inside view folder. There will be seperate folder for each view we create inside Views folder.\n\u003cbr/\u003e\n\u003cb\u003eappsettings.json:\u003c/b\u003e It is the application configuration file which is used to store configuration settings i.e connections strings of the database, global variables etc. \n\u003c/br\u003e\n\u003cb\u003eProgram.cs :\u003c/b\u003e Initially asp.net core application starts as a console application. In the Main method it calls the CreateWebHostBuilder() method that configures the asp.net core setting and launch it as asp.net core application.\n\u003cbr/\u003e\n\u003cb\u003eStartup.cs:\u003c/b\u003e  It contains the ConfigureServices() and Configure methods. As the name implies ConfigureServices() method configures all the services which are going to used by the application. Configure method take care of all the request processing pipelines.\n\u003cbr/\u003e\n\u003cb\u003eDownload Database.\u003c/b\u003e\n\u003cbr/\u003e\nhttps://github.com/anandugnath/CoreMVC_CRUD/blob/main/MVC_Core_CRUD/MVC_CORE_CRUD/Database/DB.sql\n \n\u003cbr/\u003e\n\u003ch3\u003e Install All Necessary Packages From NuGet. \u003c/h3\u003e\n\u003c/br\u003e\n\nhttps://www.nuget.org/packages/Microsoft.Extensions.Configuration/8.0.0?_src=template\n\u003cbr/\u003e\nhttps://www.nuget.org/packages/Microsoft.Extensions.Configuration.Json/8.0.0?_src=template\n\u003cbr/\u003e\nhttps://www.nuget.org/packages/System.Configuration.ConfigurationManager/8.0.0?_src=template\n\u003cbr/\u003e\nhttps://www.nuget.org/packages/Newtonsoft.Json/13.0.3?_src=template\n\u003cbr/\u003e\n\u003cbr/\u003e\n\u003cbr/\u003e\n\u003ch2\u003eUnit Index View\u003c/h2\u003e\n\u003cbr/\u003e\n\u003ca href=\"https://www.buymeacoffee.com/anandugnath\" target=\"_blank\"\u003e\u003cimg src=\"https://github.com/anandugnath/CoreMVC_CRUD/blob/main/Unit_Creation.png\" alt=\"Buy Me A Coffee\" \u003e\u003c/a\u003e\n\u003cbr/\u003e\n\u003ch2\u003eCreate Page\u003c/h2\u003e\n\u003cbr/\u003e\n\u003ca href=\"https://www.buymeacoffee.com/anandugnath\" target=\"_blank\"\u003e\u003cimg src=\"https://github.com/anandugnath/CoreMVC_CRUD/blob/main/Create_Unit.png\" alt=\"Buy Me A Coffee\" \u003e\u003c/a\u003e\n\u003cbr\u003e\n\n\u003ch2\u003eEdit Page\u003c/h2\u003e\n\u003cbr/\u003e\n\u003ca href=\"https://www.buymeacoffee.com/anandugnath\" target=\"_blank\"\u003e\u003cimg src=\"https://github.com/anandugnath/CoreMVC_CRUD/blob/main/Edit_Unit.png\" alt=\"Buy Me A Coffee\" \u003e\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanandugnath%2Fcoremvc_crud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanandugnath%2Fcoremvc_crud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanandugnath%2Fcoremvc_crud/lists"}