From 54c575e2328d5c3c56988fd9bf1d682cbeec89e0 Mon Sep 17 00:00:00 2001 From: Chanan Braunstein Date: Wed, 9 May 2018 11:42:38 -0600 Subject: [PATCH] v0.0.3 --- README.md | 4 ++-- docs/storageFormat.md | 4 +++- src/BlazorDB/BlazorDB.csproj | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7a55411..4a39b4f 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ So far the the API is very simplestic but works. First add a reference to the nuget package: ``` -Install-Package BlazorDB -Version 0.0.2 +Install-Package BlazorDB -Version 0.0.3 ``` or ``` -dotnet add package BlazorDB --version 0.0.2 +dotnet add package BlazorDB --version 0.0.3 ``` Then in Program.cs add Blazor DB to the dependency injection services: diff --git a/docs/storageFormat.md b/docs/storageFormat.md index 7b27a5c..8ab8526 100644 --- a/docs/storageFormat.md +++ b/docs/storageFormat.md @@ -14,8 +14,10 @@ Contents: Contents: +* Context FQN +* StorageSet FQN * Guids - List of persisted guids Initial implementation will regenerate the guid on every `SaveChanges()` and the list in the metadata table. Future implementation might store metadata about the model in the model value itself, so the guid will be loaded into memory and won't be regenerated. -Future items that might be stored in the the metadata file would be items such as index infromation \ No newline at end of file +Future items that might be stored in the the metadata file would be items such as index information \ No newline at end of file diff --git a/src/BlazorDB/BlazorDB.csproj b/src/BlazorDB/BlazorDB.csproj index 1e20fa5..29a4aa3 100644 --- a/src/BlazorDB/BlazorDB.csproj +++ b/src/BlazorDB/BlazorDB.csproj @@ -7,7 +7,7 @@ false 7.3 BlazorDB - 0.0.2 + 0.0.3 Chanan Braunstein Blazor localStorage Database In memory, persisted to localstorage, database for .net Blazor browser framework