https://github.com/darkygr/asp.net-6-api-rest-angular-1
ASP.NET 6 - API REST - Angular - CRUD
https://github.com/darkygr/asp.net-6-api-rest-angular-1
angular api-rest asp-net-core csharp
Last synced: 3 months ago
JSON representation
ASP.NET 6 - API REST - Angular - CRUD
- Host: GitHub
- URL: https://github.com/darkygr/asp.net-6-api-rest-angular-1
- Owner: DarkyGr
- Created: 2023-03-19T15:34:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-24T23:14:50.000Z (about 2 years ago)
- Last Synced: 2025-01-02T08:23:06.434Z (5 months ago)
- Topics: angular, api-rest, asp-net-core, csharp
- Language: C#
- Homepage:
- Size: 482 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ASP.NET 6 - API REST - Angular - CRUD
This applcation was made with:
- ASP.NET Core 6
- SQL Server 2019
- Without Controllers (Minimalist Views)
- Angular 15.2.2
- Angular Material 15.2.2Required packages in Visual Studio (BackEndAPI Folder):
- Microsoft.EntityFrameworkCore.SqlServer 7.0.0
- Microsoft.EntityFrameworkCore.Tools 7.0.0
- Automapper 12.0.0
- AutoMapper.Extensions.Microsoft.DependencyInjection 12.0.0Required facilities in VS Code (FrontEndAPI Folder):
- ng add @angular/[email protected]
- npm install moment --save
- npm install @angular/[email protected]Use the following command line to add our database context to our project:
- In Visual Studio, find the "Tools" tab > NuGet Package Manager > Package Manager Console.
- And paste in the console -> Scaffold-DbContext "Server=(local); DataBase=db_angularapiCrud; Trusted_Connection=True; TrustServerCertificate=True;" Microsoft.EntityFrameworkCore.SqlServer -OutPutDir Models