14. .Net Core 3.1 API with Entity Framework Core (Registration Post and Get API)

Опубликовано: 28 Март 2026
на канале: Tapan Dubey
500
10

scaffold command to generate entities and db context file -
scaffold-DbContext "Server=YOUR_SERVER; User Id=YOUR USER; Password=YOUR PASSWORD; Database=TODO;" Microsoft.EntityFrameworkCore.SqlServer -Output Entities

-----------------SQL Details -
USE [TODO]
GO

/****** Object: Table [dbo].[userDetails] Script Date: 17-07-2020 17:07:57 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[userDetails](
[Id] [int] IDENTITY(1,1) NOT NULL,
[fName] [varchar](50) NOT NULL,
[lName] [varchar](50) NULL,
[email] [varchar](100) NOT NULL,
[password] [varchar](50) NOT NULL,
PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO


----------------
Postman-
https://www.postman.com/downloads/'
visual studio 2019 -
https://visualstudio.microsoft.com/do...
MS SQL -
https://www.microsoft.com/en-in/sql-s...

Please subscribe to my channel , you can also like my facebook page to get latest update -
  / codewithtapan  

Previous Video Links -
13.RXJS, Promise Vs Observable, Observable vs Observer
   • 13. RXJS, Promise Vs Observable, Observabl...  
12. Service and Dependency Injection
   • 12. Angular Service , Dependency Injection...  
11. Custom Async Validation for Email Already Exists
   • 11. Custom Async validation for Template D...  
10. Custom Field validator for password and confirm password
   • 10. Template Driven Form Custom Validation...  
9.Template Driven Form-
   • 9. Template Driven Forms Angular 9  
8. Ngx Bootstrap
   • 8. Angular 9 ngx bootstrap  
7. Passing Data with navigation -
   • 7. Angular 9 : Passing data with Navigation  
6. Lazy Loading and Wildcard Route
   • 6. Angular 9 : Lazy loading :Wildcard Route  
5. Basic Routing
   • 5.Angular 9: Routing Basic  
4. Components
   • 4. Angular 9 Components  
3. Module: Feature Module: Shared Module
   • 3.Angular 9: Module: Feature Module: Share...  
2. Hello Angular
   • 2.Angular 9: Hello Angular: Run First Angu...  
1. Angular 9: Development Environment setup.
   • 1. Angular 9: Development Environment setup.