Skip to main content

Posts

Featured

Asp.Net 6.0 Core MVC Code First Approach Using Entity Framework CRUD Operations

I am  using  visualstudio2022..sqlserver select   c#   ,all platform,    web  and then select  asp.net (model-View-Controller) and then click next after give project name  CRUDOperationsDemo       AND SELECT    FRAMEWORK   .NET6VERSION AND THEN ON CREATE BUTTON  AFTER NEXT LOOKS YOUR SOLUTION EXPLORER  FILEES YOU HAVE FOLDER MODEL VIEW S AND CONTROLLER AND THEN RIGHT  CLICK ON MODEL FOLDER AND ADD CLASS thats  NAME Department simillalry create another class name named Employee codeof department .cs file using System . ComponentModel . DataAnnotations ; using System . ComponentModel . DataAnnotations . Schema ; namespace CURDOprationsDimo . Models { [ Table ( " Departments " , Schema = " HR " )] public class Department { [ Key ][ Display ( Name = " ID " )] public int DepartmentId { get ; set ; } [ Required ] [ Display ( ...

Latest Posts