Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joaoveasey/crud-api
web api .net 7 (entity framework)
https://github.com/joaoveasey/crud-api
Last synced: 2 days ago
JSON representation
web api .net 7 (entity framework)
- Host: GitHub
- URL: https://github.com/joaoveasey/crud-api
- Owner: joaoveasey
- License: mit
- Created: 2024-03-01T00:58:45.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-03-28T00:48:57.000Z (8 months ago)
- Last Synced: 2024-11-05T22:12:10.618Z (14 days ago)
- Language: C#
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# WEB API
crud simples com uma web api .net 7 para consolidar conhecimento em APIs
## Índice
- [Visão Geral](#visão-geral)
- [Tecnologias Utilizadas](#tecnologias-utilizadas)
- [Como Usar](#como-usar)## Visão Geral
a finalidade deste projeto é fornecer um exemplo prático de como criar uma web api para operações básicas de um sistema de gerenciamento de recursos, neste caso, gerenciando informações de funcionários(as).
![image](https://github.com/joaoveasey/WEB-API/assets/125090850/59cc4f50-bc84-4b6e-b3a0-73e34597d0a3)
## Tecnologias Utilizadas
- .net 7
- entity framework
- sql server management studio
- swagger## Como Usar
para utilizar, você precisará criar no sgbd de sua preferência (nesse projeto utilizei o sql server) e criar um novo banco de dados usando o seguinte comando:
```bash
-- 1º
create database Employee-- 2º
use Employee
create table Employees (
id INT PRIMARY KEY IDENTITY(1,1),
name NVARCHAR(100) NOT NULL,
age INT NOT NULL,
photo NVARCHAR(100)
);
```também será necessário alterar a connection string na pasta "APItest.Infra.ConnectionContext.cs"
```bash
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
=> optionsBuilder.UseSqlServer("Server=seuServidor;Database=Employees; Trusted_Connection = True; TrustServerCertificate=True;");
```