2nd Jan 2020
- What is ASP.Net Core ?
- Setting up working env.
- ASP.Net Core Web App creation.
- .csproj file
- main method
- InProcess
- OutOfProcess
- launsettings.json file
- appsettings.json file
4th Jan 2020
- undesrtanding middlewares.
- configuring request processing pipeline in startup.cs that handles all incoming requests and produces appropriate response in order, check system log for info ; xd ;-)
- static files; stored in wwwroot; by default doesnt serve static files, default files ,file server , create options and pass em in the respective ,middleware.
5th Jan 2020
- Use.DeveloperEceptionpage functionalitites explained
- Dev Envs; dev stage prod
- What is MVC? (Finally a worthy opponent)
- Setup MVC in Asp.net core.
- diff be AddMvc and AddMvcCore
6th Jan 2020
- Model
- Dependency Injection
- Controller
- View
- Passing data to View as; ViewBag, ViewData, Strongly typed view using
- ViewModels
06-01-2020 Played with Views and RazorPages ListView , Layout Views, Sections, ViewStart, ViewImports
7th Jan 2020
- Routing; Conventional and Attribute
- Bootstrap; Installating ext Libs and using bootstrap
- TagHelpers; UrlAction, HtmlAction
- Types; Image, Form
10th Jan 2020
- What is Entity Framework Core; installation
- DbContext class
- Sqlserver usage with EF Core
- repostiory pattern
- EF core migraions
- EF core seed data
- Domain models and db schema in sync;
- file upload in .net core mvc
11th Jan 2020
- Upload multiple files(optional)
- Edit View; httpget and httppost
- handling 404;
- 404-i resource with specified id doesn't exist
- 404-ii centralised 404 error handling
- Use StatusCode Pages; redirects, reexecute.