filmov
tv
ASP.NET Core 6 Web API CRUD operations in Azure SQL Server
Показать описание
2. Create Azure SQL Server and populate data with SQL management studio.
4. Deploying and testing the web api in Azure Web App
Resources:
PM command line:
Scaffold-DbContext "Server={server name}; Database={database name}; User ID={user name}, Password={password}; Trusted_Connection=False;Encrypt=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models
T-SQL:
CREATE TABLE Employees
(
ID int primary key identity,
FirstName nvarchar(50),
LastName nvarchar(50),
Gender nvarchar(50),
Salary int
)
GO
INSERT INTO Employees VALUES ('Pranaya', 'Rout', 'Male', 60000)
INSERT INTO Employees VALUES ('Anurag', 'Mohanty', 'Male', 45000)
INSERT INTO Employees VALUES ('Preety', 'Tiwari', 'Female', 45000)
INSERT INTO Employees VALUES ('Sambit', 'Mohanty', 'Male', 70000)
INSERT INTO Employees VALUES ('Shushanta', 'Jena', 'Male', 45000)
INSERT INTO Employees VALUES ('Priyanka', 'Dewangan', 'Female', 30000)
INSERT INTO Employees VALUES ('Sandeep', 'Kiran', 'Male', 45000)
INSERT INTO Employees VALUES('Shudhansshu', 'Nayak', 'Male', 30000)
INSERT INTO Employees VALUES ('Hina', 'Sharma', 'Female', 35000)
INSERT INTO Employees VALUES ('Preetiranjan', 'Sahoo', 'Male', 80000)
GO
select * from Employees
4. Deploying and testing the web api in Azure Web App
Resources:
PM command line:
Scaffold-DbContext "Server={server name}; Database={database name}; User ID={user name}, Password={password}; Trusted_Connection=False;Encrypt=True;" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models
T-SQL:
CREATE TABLE Employees
(
ID int primary key identity,
FirstName nvarchar(50),
LastName nvarchar(50),
Gender nvarchar(50),
Salary int
)
GO
INSERT INTO Employees VALUES ('Pranaya', 'Rout', 'Male', 60000)
INSERT INTO Employees VALUES ('Anurag', 'Mohanty', 'Male', 45000)
INSERT INTO Employees VALUES ('Preety', 'Tiwari', 'Female', 45000)
INSERT INTO Employees VALUES ('Sambit', 'Mohanty', 'Male', 70000)
INSERT INTO Employees VALUES ('Shushanta', 'Jena', 'Male', 45000)
INSERT INTO Employees VALUES ('Priyanka', 'Dewangan', 'Female', 30000)
INSERT INTO Employees VALUES ('Sandeep', 'Kiran', 'Male', 45000)
INSERT INTO Employees VALUES('Shudhansshu', 'Nayak', 'Male', 30000)
INSERT INTO Employees VALUES ('Hina', 'Sharma', 'Female', 35000)
INSERT INTO Employees VALUES ('Preetiranjan', 'Sahoo', 'Male', 80000)
GO
select * from Employees
How to Create a Web API with ASP.NET CORE and .NET 6 (c# for beginners)
CRUD with a .NET 6 Web API & Entity Framework Core 🚀 Full Course
Industry Level REST API using .NET 6 – Tutorial for Beginners
ASP.NET Core Web API CRUD With Entity Framework - Full Course ⭐ [.NET6 API]
Build a RESTful API in ASP.NET 6.0 in 9 Steps!
Asp.Net Core Web API - CRUD operations in REST API using Entity Framework Core and SQL Server
How To Consume WEB API in ASP.NET Core MVC | ASP.NET Web API | Read Data
ASP.NET Core Web API and Entity Framework Core - Full Course Including CRUD
Step By Step Tutorial On ASP.NET MVC CRUD | CRUD Operation In ASP.NET Core Using Visual Studio 2024
ASP.NET Core Web API .NET 6 2022 - 3. One-To-Many Relationships
EF Core 6 🚀 Database First / DB First (Entity Framework Core 6 / .NET 6)
Part 6 Creating first Web/REST api service or endpoint || Asp.Net Core Web API Tutorials C#
CRUD with Angular 14 & .NET 6 🚀 Web API, EF Core & SQL Server
Integration Testing ASP.NET Core 6 WebAPI Applications
Publish ASP.NET Core Web API to IIS || [.NET6 API] ||2022
.NET 6 Web API 🚀 EF Core Pagination (Entity Framework Core 6 & SQL Server)
Comment développer une API Web en C# avec ASP.NET CORE. Exemple concret.
ASP.NET Core - Clean Architecture - Full Course
Angular 14 CRUD with .NET 6 Web API using Entity Framework Core - Full Course
Change Launch URL for ASP.NET Core Web API (.NET 6)
Run ASP.NET Core Web API Project Using CLI | ASP.NET Core 5.0 Web API tutorial
What is Middleware in ASP.NET Core ?
[FromHeader] attribute: Bind the header data | ASP.NET Core 5.0 Web API Tutorial
DevOps | Azure | Build Pipeline for .NET Core 6 Web API | Getting Started
Комментарии