Skip to content

.NET 5.0 REST API boilerplate with Dapper for Data Connection and JWT bearer authentication and role based Authorization

Notifications You must be signed in to change notification settings

umfaruki/dotNetAPIBoilderPlate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.NET 5.0 REST API boilerplate with Dapper for Database and JWT bearer authentication and role based authorization

Requirements:

  • Visual Studio 2019 Version 16.8.1
  • .NET 5.0 SDK
  • MySQL or MSSQL Server or PostgreSQL

Dapper for Database connection

"DatabaseSettings": {
    "Main": {
      "ConnectionString": "Server=127.0.0.1; Port=3306;Database=APINETCORESample;User Id=root;password=;Persist Security Info=True;Allow Zero Datetime=True;CharSet=utf8;",
      "Adapter": "mysqlconnection"
    },
	"OtherDBServer": {
      "ConnectionString": "",
      "Adapter": "mysqlconnection" // list: API-DataAccess/SettingModel/Enums.Adapter
    }
},

About

.NET 5.0 REST API boilerplate with Dapper for Data Connection and JWT bearer authentication and role based Authorization

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%