WinRT.DB 0.6.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package WinRT.DB --version 0.6.1
NuGet\Install-Package WinRT.DB -Version 0.6.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WinRT.DB" Version="0.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WinRT.DB --version 0.6.1
#r "nuget: WinRT.DB, 0.6.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WinRT.DB as a Cake Addin
#addin nuget:?package=WinRT.DB&version=0.6.1

// Install WinRT.DB as a Cake Tool
#tool nuget:?package=WinRT.DB&version=0.6.1

This database is based on a file system in Windows 8 and is using WinRT (Windows Runtime) in Windows 8 environment and thus can be used for Metro style applications.  It includes simple, yet effective API that allows you to create tables based on classes.  Each database consists of any number of tables.  All operations are asynchronous to support Metro style operations on file system.  It also supports horizontal partitioning of tables to provide for smaller files and faster operations.  The usage of this software is very simple. You create a new database by calling CreateDatabase. You can add tables to the database by calling db.CreateTable<T> where T is the type of entity to be stored in table rows.  You can save either all tables by calling SaveAsync on database or one table at a time by calling SaveAsync on a specific table.  It supports await and async keywords.  As of version 0.9.1.0 it supports data binding to list based controls, such as ListBox.
As of version 0.5 IsBusy property is added that can be used to maintain the state of Save button.  Please see QuickStart project that is part of the download for sample implementation of Save button and use of Busy status.  You can now store database in local or roaming folder.

Product Compatible and additional computed target framework versions.
WinRT winrt45 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.7.0 2,846 11/17/2012
0.6.1 1,579 6/29/2012
0.6.0 1,240 6/24/2012
0.5.0 1,390 4/20/2012

Initial release based on beta verion of the VS 11 and Windows 8 Consumer Preview