All Projects → cristofima → StoreCleanArchitecture-NET

cristofima / StoreCleanArchitecture-NET

Licence: other
This is a basic project to demonstrate an introduction about the implementation of Clean Architecture on .NET

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to StoreCleanArchitecture-NET

Onion Architecture Asp.net Core
WhiteApp API solution template which is built on Onion Architecture with all essential feature using .NET 5!
Stars: ✭ 196 (+931.58%)
Mutual labels:  unit-testing, integration-testing, clean-architecture, entity-framework-core
Hexagonal-architecture-ASP.NET-Core
App generator API solution template which is built on Hexagnonal Architecture with all essential feature using .NET Core
Stars: ✭ 57 (+200%)
Mutual labels:  unit-testing, integration-testing, entity-framework-core
car-rental
CarRental Project
Stars: ✭ 13 (-31.58%)
Mutual labels:  web-api, clean-architecture, entity-framework-core
MinimalApi
ASP.NET Core 7.0 - Minimal API Example - Todo API implementation using ASP.NET Core Minimal API, Entity Framework Core, Token authentication, Versioning, Unit Testing, Integration Testing and Open API.
Stars: ✭ 156 (+721.05%)
Mutual labels:  unit-testing, sql-server, entity-framework-core
BookCart
An e-commerce application for an online book store.
Stars: ✭ 116 (+510.53%)
Mutual labels:  sql-server, web-api, entity-framework-core
EntityFrameworkCore.AutoFixture
A library aimed to minimize the boilerplate required to unit-test Entity Framework Core code using AutoFixture and in-memory providers.
Stars: ✭ 31 (+63.16%)
Mutual labels:  unit-testing, entity-framework-core
e-commerce-backend
Shopping site backend which used Asp.Net Web API, JWT, Cache, Log, SqlServer, Entity Framework Core and N-Layer Architecture implementation.
Stars: ✭ 16 (-15.79%)
Mutual labels:  sql-server, entity-framework-core
pythonista-chromeless
Serverless selenium which dynamically execute any given code.
Stars: ✭ 31 (+63.16%)
Mutual labels:  unit-testing, integration-testing
SPA-With-Blazor
Creating a Single Page Application with Razor pages in Blazor using Entity Framework Core database first approach.
Stars: ✭ 27 (+42.11%)
Mutual labels:  sql-server, entity-framework-core
Archit Ios
Intelygenz iOS Architecture
Stars: ✭ 203 (+968.42%)
Mutual labels:  unit-testing, clean-architecture
MsCoreOne
MsCoreOne is a simple Ecommerce with using many technologies such as .NET 5, Entity Framework Core 5, React 16.13 with modern Clean Architecture, Domain-Driven Design, CQRS, SOLID, Identity Server 4, Blazor. It will focus on resolving the problems always see in the process to develop projects.
Stars: ✭ 77 (+305.26%)
Mutual labels:  sql-server, entity-framework-core
Peasy.NET-Samples
Showcases a middle tier built with peasy and consumed by multiple client consumers
Stars: ✭ 33 (+73.68%)
Mutual labels:  sql-server, web-api
Typescript Clean Architecture
It is my attempt to create Clean Architecture based application in Typescript
Stars: ✭ 225 (+1084.21%)
Mutual labels:  unit-testing, clean-architecture
Dntframeworkcore
Lightweight and Extensible Infrastructure for Building Web Applications - Web Application Framework
Stars: ✭ 208 (+994.74%)
Mutual labels:  unit-testing, integration-testing
Fineract-CN-mobile
DEPRECATED project - Check the Apache fineract-cn-mobile project instead
Stars: ✭ 17 (-10.53%)
Mutual labels:  unit-testing, integration-testing
ITL
Sample Web API implementation with .NET Core and DDD using Clean Architecture.
Stars: ✭ 29 (+52.63%)
Mutual labels:  clean-architecture, entity-framework-core
fullstack-jobs
Real(ish) demo using Angular with ASP.NET Core GraphQL and IdentityServer.
Stars: ✭ 84 (+342.11%)
Mutual labels:  sql-server, entity-framework-core
toUUID
Simple integer to UUID generator for unit and integration tests written in Java or Kotlin
Stars: ✭ 12 (-36.84%)
Mutual labels:  unit-testing, integration-testing
Systemwrapper
.NET library for easier testing of system APIs.
Stars: ✭ 153 (+705.26%)
Mutual labels:  unit-testing, integration-testing
android-clean-architecture
Android Sample Clean Architecture App written in Kotlin. (MVVM, dagger2, RXjava, data binding, Live data,room)
Stars: ✭ 29 (+52.63%)
Mutual labels:  unit-testing, clean-architecture

Store Clean Architecture

Clean Architecture's implementation in 3 layers (Application Core, Infrastructure and Web API)

To build this project

dotnet restore
dotnet build

Configure the database settings in src\Store.WebApi\appsettings.json

{
  "ConnectionStrings": {
    "DefaultConnection": "Server=localhost;Database=DemoStore;User ID=sa;Password=coronadoserver2018;Trusted_Connection=True;"
  },
  "Logging": {
    "LogLevel": {
      "Default": "Warning"
    }
  },
  "AllowedHosts": "*"
}

To create the tables in the database, go to src\Store.WebApi

dotnet ef database update

To run, go to src\Store.WebApi

dotnet run

To test Unit and Integration projects, go to solution folder

dotnet test
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].