StudentManagementApp is an ASP.NET Core MVC application that simulates a student–grade management system using EF Core Code-First modeling.
It demonstrates relational modeling, seeded data, LINQ queries, and a structured Razor UI for displaying student information and associated grades.
- ASP.NET Core MVC
- Entity Framework Core (Code-First)
- SQL Server
- LINQ
- Razor Views
- Code-First models with one-to-many relationships (Student <-> Grades)
- Seeded sample data for quick testing and demonstration
- LINQ queries for grouping, filtering, and calculating totals or averages
- Razor Views for clean and intuitive presentation of students and grades
- EF Core migrations for database versioning and schema evolution
- EF Core Code-First + migrations
- One-to-many relational data modeling
- LINQ-based data workflows
- MVC pattern for clear separation of responsibilities
- Clean separation between model, logic, and UI layers
EF Core Code-First · LINQ · ASP.NET Core MVC · Razor Views · Data Modeling · Migrations · Relational Structures
Light educational project built to demonstrate Code-First modeling, relational structures, and LINQ-based data operations.