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
- Host: GitHub
- URL: https://github.com/aenesgur/.netcorewebapi_dappersample
- Owner: aenesgur
- Created: 2020-08-23T15:03:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T15:10:23.000Z (over 5 years ago)
- Last Synced: 2025-07-19T21:19:07.078Z (6 months ago)
- Topics: dapper, micro-orm, orm
- Language: C#
- Homepage:
- Size: 10.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```