omaxel / todos-azure-table-storage

An example .NET 5 MVC application that stores data on Azure Table Storage.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Todos

This is an example .NET 5 MVC application that stores data on Azure Table Storage. It allows managing Todos.

The list is paginated using a Continuation Token.

Getting started

You have to update the connection string which points to the Azure Storage Account in the appsettings.json file. The table name must be Todo since it's chosen by the entity name.

You can then run the application using:

dotnet run --launch-profile Todos

Known issues and limitations

  • The list of elements is not ordered since is not supported by Azure Table Storage.
  • APIs to add and remove Todos don't return the modified entity and the same it's not updated. It should be fetched again by the source.

About

An example .NET 5 MVC application that stores data on Azure Table Storage.


Languages

Language:C# 51.4%Language:HTML 24.5%Language:JavaScript 16.0%Language:CSS 8.1%