All Projects → jasontaylordev → Northwindtraders

jasontaylordev / Northwindtraders

Licence: mit
Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core.

Programming Languages

C#
18002 projects
typescript
32286 projects
HTML
75241 projects

Projects that are alternatives of or similar to Northwindtraders

run-aspnetcore-basics retired
One Solution - One Project for web application development with Asp.Net Core & EF.Core. Only one web application project which used aspnetcore components; razor pages, middlewares, dependency injection, configuration, logging. To create websites with minimum implementation of asp.net core based on HTML5, CSS, and JavaScript. You can use this boi…
Stars: ✭ 15 (-99.68%)
Mutual labels:  entity-framework-core, aspnet-core, code-first
Run Aspnetcore
A starter kit for your next ASP.NET Core web application. Boilerplate for ASP.NET Core reference application, demonstrating a layered application architecture with applying Clean Architecture and DDD best practices. Download 100+ page eBook PDF from here ->
Stars: ✭ 227 (-95.1%)
Mutual labels:  entity-framework-core, aspnet-core, clean-architecture
Run Aspnetcore Realworld
E-Commerce real world example of run-aspnetcore ASP.NET Core web application. Implemented e-commerce domain with clean architecture for ASP.NET Core reference application, demonstrating a layered application architecture with DDD best practices. Download 100+ page eBook PDF from here ->
Stars: ✭ 208 (-95.51%)
Mutual labels:  entity-framework-core, aspnet-core, clean-architecture
Moonglade
The .NET 5 blog system of https://edi.wang, runs on Microsoft Azure
Stars: ✭ 249 (-94.62%)
Mutual labels:  entity-framework-core, aspnet-core
Run Aspnetcore Microservices
Microservices on .Net platforms which used Asp.Net Web API, Docker, RabbitMQ, MassTransit, Grpc, Ocelot API Gateway, MongoDB, Redis, PostgreSQL, SqlServer, Dapper, Entity Framework Core, CQRS and Clean Architecture implementation. Also includes Cross-Cutting concerns like Implementing Centralized Distributed Logging with Elasticsearch, Kibana and SeriLog, use the HealthChecks with Watchdog, Implement Retry and Circuit Breaker patterns with Polly and so on.. See Microservices Architecture and Step by Step Implementation on .NET Course w/ discount->
Stars: ✭ 406 (-91.23%)
Mutual labels:  aspnet-core, clean-architecture
Clean Architecture Manga
🌀 Clean Architecture with .NET6, C#10 and React+Redux. Use cases as central organizing structure, completely testable, decoupled from frameworks
Stars: ✭ 3,104 (-32.93%)
Mutual labels:  entity-framework-core, clean-architecture
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 (-96.63%)
Mutual labels:  entity-framework-core, aspnet-core
ITL
Sample Web API implementation with .NET Core and DDD using Clean Architecture.
Stars: ✭ 29 (-99.37%)
Mutual labels:  clean-architecture, entity-framework-core
fullstack-jobs
Real(ish) demo using Angular with ASP.NET Core GraphQL and IdentityServer.
Stars: ✭ 84 (-98.18%)
Mutual labels:  entity-framework-core, aspnet-core
fake-survey-generator
A slightly more-than-trivial full-stack application built with DDD & CQRS concepts
Stars: ✭ 49 (-98.94%)
Mutual labels:  entity-framework-core, aspnet-core
emplea do
Open source tech jobs portal. Made with .Net Core
Stars: ✭ 75 (-98.38%)
Mutual labels:  entity-framework-core, aspnet-core
StoreCleanArchitecture-NET
This is a basic project to demonstrate an introduction about the implementation of Clean Architecture on .NET
Stars: ✭ 19 (-99.59%)
Mutual labels:  clean-architecture, entity-framework-core
Dotnetcore Entityframework Api
Building REST APIs using ASP.NET Core and Entity Framework Core
Stars: ✭ 212 (-95.42%)
Mutual labels:  entity-framework-core, aspnet-core
Onion Architecture Asp.net Core
WhiteApp API solution template which is built on Onion Architecture with all essential feature using .NET 5!
Stars: ✭ 196 (-95.76%)
Mutual labels:  entity-framework-core, clean-architecture
Aspnetcoregraphql
Sample project demonstrating a GraphQL service built with ASP.NET Core 2.2, Entity Framework Core and graphql-dotnet.
Stars: ✭ 272 (-94.12%)
Mutual labels:  entity-framework-core, aspnet-core
Aurora Api Project
Aurora is a project developed in .NET Core, where it aims to show how to create something using an architecture, in layers, simple and approaching, in a simplistic way, some concepts such as DDD.
Stars: ✭ 162 (-96.5%)
Mutual labels:  entity-framework-core, aspnet-core
Dntidentity
A highly customized sample of the ASP.NET Core Identity
Stars: ✭ 145 (-96.87%)
Mutual labels:  entity-framework-core, aspnet-core
Modernarchitectureshop
The Microservices Online Shop is an application with a modern software architecture that is cleanly designed and based on.NET lightweight technologies. The shop has two build variations. The first variant is the classic Microservices Architectural Style. The second one is with Dapr. Dapr has a comprehensive infrastructure for building highly decoupled Microservices; for this reason, I am using Dapr to achieve the noble goal of building a highly scalable application with clean architecture and clean code.
Stars: ✭ 154 (-96.67%)
Mutual labels:  entity-framework-core, clean-architecture
MonolithicArchitecture
This repository presents an approach on how to build an application using Monolithic architecture, ASP.NET Core, EntityFrameworkCore, Identity Server, CQRS, DDD
Stars: ✭ 18 (-99.61%)
Mutual labels:  clean-architecture, entity-framework-core
car-rental
CarRental Project
Stars: ✭ 13 (-99.72%)
Mutual labels:  clean-architecture, entity-framework-core

Build Status

NorthwindTraders

Northwind Traders is a sample application built using ASP.NET Core and Entity Framework Core. The architecture and design of the project is explained in the video:

The initial construction of this project is explained in the following blog posts:

For information on upcoming features and fixes, take a look at the product roadmap.

Getting Started

Use these instructions to get the project up and running.

Prerequisites

You will need the following tools:

Setup

Follow these steps to get your development environment set up:

  1. Clone the repository

  2. At the root directory, restore required packages by running:

    dotnet restore
    
  3. Next, build the solution by running:

    dotnet build
    
  4. Next, within the \Src\WebUI\ClientApp directory, launch the front end by running:

    npm start
    
  5. Once the front end has started, within the \Src\WebUI directory, launch the back end by running:

    dotnet run
    
  6. Launch https://localhost:44376/ in your browser to view the Web UI

  7. Launch https://localhost:44376/api in your browser to view the API

Technologies

  • .NET Core 3
  • ASP.NET Core 3
  • Entity Framework Core 3
  • Angular 8

Versions

The master branch is running .NET Core 3. The dotnetcore22 branch contains an earlier version built with .NET Core 2.2. This is the version closely related to the talks on Clean Architecture with ASP.NET Core 2.1 / 2.2.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

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].