amrit5joshi / aspnetcore.ntier

.NET Core N-Tier architecture Web Api sample project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Asp.Net Core Web API N-Tier

.NET Core N-Tier architecture Web Api sample project.

Setup

  • SQLite has been used as database
  • You can change connection string from appsettings.json within aspnetcore.ntier.API
  • Apply database migrations to create the tables. From a command line :

Go into aspnetcore.ntier.DAL class library. Please make sure proper versions of.NET SDK and dotnet-ef tool has been installed

cd aspnetcore.ntier.DAL

Apply database changes. If you are using SQLite then database file with .db extension should be created inside aspnetcore.ntier.API project

dotnet ef --startup-project ../aspnetcore.ntier.API database update --context AspNetCoreNTierDbContext

Authentication

  • Non auth endpoints requires JWT token to be provided otherwise 401 response will be returned
  • So you have to login or register first in order to get the JWT token then add it to the header while sending a request
  • You can disable authentication for endpoints by removing Authorize attribute from the particular controller

Layers

  • aspnetcore.ntier.API - Presentation Layer .Net Core Web API project.
  • aspnetcore.ntier.BLL - Business Logic Layer responsible for data exchange between DAL and Presentation Layer.
  • aspnetcore.ntier.DAL - Data Access Layer responsible for interacting database. Generic repositories have been used.
  • aspnetcore.ntier.DTO - Data transfer objects.
  • aspnetcore.ntier.Entity - Database entities.
  • aspnetcore.ntier.IoC - Responsible for dependency injection it has DependencyInjection class and InjectDependencies method in it.
  • aspnetcore.ntier.Test - Used xUnit and Mock tools.

Development process

You can follow the steps during development from the commit list.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Show your support

Give a ⭐️ if this project helped you!

About

.NET Core N-Tier architecture Web Api sample project.

License:GNU General Public License v3.0


Languages

Language:C# 100.0%