Skip to content

rghoshcode/thecoreblog-documentdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

thecoreblog-documentdb

This project is an ASP.NET Core 2.0 API to store & manage (CRUD operations) Blog items of the following structure on an Azure DocumentDB (NoSQL).

public class Blog
{
    [JsonProperty("id")]
    public string Id { get; set; }

    [JsonProperty("title")]
    public string Title { get; set; }

    [JsonProperty("authorName")]
    public string AuthorName { get; set; }

    [JsonProperty("content")]
    public string Content { get; set; }
}

About

RESTful API to store Blogs on an Azure DocumentDB

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages