• Stars
    star
    346
  • Rank 121,865 (Top 3 %)
  • Language
    C#
  • License
    MIT License
  • Created about 4 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A starting point to build a web API to work with Azure Cosmos DB using .NET 5 and Azure Cosmos DB .NET SDK V3, based on Clean Architecture and repository design pattern. Partition key is also implemented through the repository pattern.

Clean Architecture with partitioned repository pattern using Azure Cosmos DB

UPDATE: all projects in this soluction have been updated to .NET 5. Azure Functions project is updated to the newest v4.

This solution provides a starting point to build a web API to work with Azure Cosmos DB using .NET 5 and Azure Cosmos DB .NET V3, based on Clean Architecture and repository design pattern.

  • Partition key is also implemented through the repository pattern in order to support large scale Cosmos DB.
  • A RESTful API application is created with popular architecture features (see full list below).

Clean Architecture is promoted by Microsoft on their .NET application architecture guide page. The e-book written by Steve "ardalis" Smith (@ardalis) is beautifully written and well explains the beauty and benefits of using Clean Architecture. For more details, please see Architect Modern Web Applications with ASP.NET Core and Azure.

This project uses the newer Cosmos DB .NET SDK V3, because it adds support for stream APIs and Cosmos DB Change Feed processor APIs, as well as performance improvements.

(NEW) Azure Functions starter project

  • An Azure Functions project is also created with popular architecture features (see full list below), in order to demonstrate how it can be used as a serverless computer service to work with Cosmos DB.

(NEW) Auditing feature

  • A default Audit container is created at API startup.
  • Auditing is done through repository automatically when updating an item, with no code change required in the API project.
  • An example API endpoint is added to demonstrate how to retrieve full history of an entity.
  • Audit container use the entity id as the partition key, so that each entity record technically should have 20G worth of storage size avaiable to store audit log.

(NEW) React Client Web Application

  • A web application dashboard built using React, Typescript, Material UI.
  • NSwagStudio is used to generate TypeScript client code to interact with the API.
  • NSwagStudio file is added to the ClientApp project.
  • FluentValidation is registered to define validation rules in Swagger/OpenAPI schema

(NEW) Token Service Provider

  • Custom token service provider using ASP.NET Core Identity and SQL Server.

System Design Diagram

Give a star

If you enjoy this project, or are using this project to start your exciting new project, or are just forking it to play, please give it a star. Much appreciated!

Goals

The primary goal of the project is to provide a basic solution structure for anyone who is building a new ASP.NET Core web or API project using Cosmos DB.

For a detailed introduction, please see my recent article, Clean Architecture — ASP.NET Core API using Partitioned Repository Pattern and Azure Cosmos DB.

Getting Started - API

  1. Download the Azure CosmosDB emulator in order to run the API project locally. Here is a download link: https://docs.microsoft.com/en-us/azure/cosmos-db/local-emulator-release-notes#download.
  2. Start the emulator
  3. Set the API project as your Startup project in Visual Studio
  4. The swagger UI page should be loaded at: https://localhost:5001/swagger/index.html
  5. Running the API project will automatically ensure Cosmos DB containers are created and also seed application data. See Startup.cs and DatabaseConfig.cs in API project for details.
  6. Running the API project will automatically ensure ASP.NET Core Identity database is created and also seed application user data. See Startup.cs and DatabaseConfig.cs in API project for details.

Getting Started - Client Application

Because the client web application is built using React and TypeScript, you need a couple of things below installed on your machine.

Prerequisites:

  1. Open folder src/CleanArchitectureCosmosDB.ClientApp in Visual Studio Code
  2. Open Terminal
  3. Run command "yarn install"
  4. Run command "yarn start"
  5. You should see the web app running on localhost:3000

Features supported

  • ASP.NET 5
  • Azure Cosmos DB .NET SDK V3
  • Azure Functions V4 (new)
  • Client Web Application using React + Typescript + Material UI(new)
  • Repository Design Pattern
  • Horizontal Partitioning
  • Partition Key Design
  • REST API
  • Custom Token Service Provider using ASP.NET Core Identity
  • Swagger UI with bearer authorization header support
  • OData support
  • IMemoryCache Cache service (Non-distributed in-memory cache)
  • Serilog for structured logging
  • Command Query Responsibility Segregation (CQRS) pattern using MediatR
  • MediatR pipeline behaviour for exception handling
  • FluentValidation for model validation (with support for database query)
  • FluentValidation to define validation rules in Swagger Schema
  • AutoMapper to mapping
  • Email Sender using SendGrid
  • Cosmos DB Database initial creation
  • Cosmos DB initial sample data seeding
  • CRUD endpoints using Cosmos DB
  • Cosmos DB point-read using partition key and ID
  • Cosmos DB single-partition read and cross-partition read
  • Cosmos DB SQL query (demonstration purpose, not recommended in production)
  • Cosmos DB query with Parameterized Query, LINQ and IQueryable
  • Cosmos DB data searching using Specification Pattern to abstract out query-specific logic
  • Audit container and automatic auditing
  • Storage service for uploading and downloading files from cloud storage, e.g. Azure Blob Storage
  • NSwagStudio file to generate TypeScript client code
  • DataTables and Pagination support using LINQ and IQueryable in API
  • Material UI DataTable in React Client App
  • Client side validation using Formik and Yup in React Client App
  • Map and render server-side errors in React Client App
  • Unit Test using xUnit

New Features Under Development

  • Refresh Token (TODO)
  • Cosmos DB Change Feed (TODO)
  • Cosmos DB Stored Procedure for Transaction (TODO)
  • Complex search specification for Cosmos DB (TODO)
  • Message Queue (TODO)
  • Secure secrets in appsettings.json using Azure Key Vault (TODO)
  • other TODOs

Additional Resources

I have published some short articles to cover different aspects of this project. Please feel free to give them a read.

Acknowledgement

Special thanks to Steve Smith (@ardalis) for sharing the CleanArchitecture repository and the e-book. I absolutely love it!

Thanks to Azure-Samples/PartitionedRepository for sample code using Cosmos DB .NET SDK V2, which helped me understand Cosmos DB .NET SDK V2 and compare SDK V2 against V3.

More Repositories

1

single-sign-on

A starting point to build a single sign-on (SSO) solution
C#
30
star
2

smart-coffee-machine

Showcase how we can decouple long-running tasks from HTTP request processing in REST API by introducing a distributed system using Message Queue, Redis, and Worker Services or Hosted Services
C#
27
star
3

aspnetcore-console-app-template

A starting template for ASP.NET Core 3.1 Console application that supports dependency injection, asynchronous programming, logging using Serilog, strongly-typed configuration, etc..
C#
23
star
4

long-running-tasks

A monolithic web application to show case how to complete long-running tasks using hosted services and async notify clients using SignalR in a monolithic ASP.NET Core web app.
C#
12
star
5

machine-learning-applications

A collection of real-world machine learning web applications built with ML.NET, ASP.NET Core, Azure Cosmos DB, and React, which can be used as a starting point for new projects.
C#
11
star
6

algorithms-notes

Summary notes on top interview questions on data structures and algorithms in C# for study purpose.
C#
10
star
7

data-engineering-ssis-etl

Starter project for building an ETL pipeline using SSIS in Visual Studio 2019
7
star
8

azure-functions-aspnetcore-starter

A starting point to build an Azure Function 3.x using ASP.NET Core 3 with supported features like logging, configuration, dependency injection, EF Core, AutoMapper, etc..
C#
6
star
9

multitenant-app-azure-cosmos-db

A starting point to build a multi-tenant web API to work with Azure Cosmos DB, based on Clean Architecture and repository design pattern. Partition key is also implemented through the repository pattern.
C#
4
star
10

aspnetcore-api-serilog

Asp.Net Core API architecture starter project - Serilog
C#
3
star
11

distributed-message-queue

Distributed message queue system
C#
2
star
12

smart-coffee-maker

A REST API and asynchronous messaging system that demonstrate how to complete long-running tasks outside of HTTP requests in RESP API, as recommended by Microsoft documentation on ASP.NET Core Performance Best Practices.
1
star
13

data-science-network-graph

This project demonstrates how a network graph can be built to visualize relational data in SQL Server using Microsoft Power BI.
1
star