asp.net core CRUD with entity framework code example
Example 1: crud operation without entity framework in mvc
Create Procedure [dbo].[GetStudentDetails] as begin select * from StudentRegEnd
Example 2: crud operation without entity framework in mvc
Create procedure [dbo].[UpdateStudentDetails] ( @StdId int, @Name nvarchar (50), @City nvarchar (50), @Address nvarchar (100) ) as begin Update StudentReg set Name=@Name, City=@City, Address=@Address where Id=@StdId End