An open API service indexing awesome lists of open source software.

https://github.com/aenesgur/.netcorewebapi_dappersample

Its a .Net Core 3.1 Web Api application which using Dapper Micro Orm
https://github.com/aenesgur/.netcorewebapi_dappersample

dapper micro-orm orm

Last synced: 5 months ago
JSON representation

Its a .Net Core 3.1 Web Api application which using Dapper Micro Orm

Awesome Lists containing this project

README

          

# .NetCoreWebApi_DapperSample
Its a .Net Core 3.1 Web Api application which using Dapper Micro Orm

### Procedures

```sh
Create PROC sp_ProductSave
@Name NVARCHAR(MAX),
@Price decimal(18,0),
@Origin NVARCHAR(MAX) = NULL

As
Begin

Insert Into PRoduct (Name,Price,Origin)
Values(@Name,@Price,@Origin)

END
```
```sh
CREATE PROC sp_ProductDelete
@Id INT

As
Begin

Delete from Product Where Id=@Id
END
```