Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

losttech/NStorage.Azure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azure implementation of storage abstractions Build Status

Azure implementations for LostTech.Storage (.NET)

Supports .NET Core

Install

Install-Package LostTech.Storage.Azure -Pre    # to enable Azure backend

Example

using LostTech.Storage;

var keyValueStore = await AzureTable.OpenOrCreate("UseDevelopmentStorage=true", "Sample");
await keyValueStore.Put("42", new Dictionary<string, object> { ["Key"] = "value0" });
var answer = await keyValueStore.TryGetVersioned("42");
Console.WriteLine("answer version: {0}", answer.Version);

About

Azure-based storage implementations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages