Skip to content
This repository has been archived by the owner on May 10, 2020. It is now read-only.

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chanan committed May 9, 2018
1 parent 382010c commit 54c575e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 3 additions & 1 deletion docs/storageFormat.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Future items that might be stored in the the metadata file would be items such as index information
2 changes: 1 addition & 1 deletion src/BlazorDB/BlazorDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<BlazorLinkOnBuild>false</BlazorLinkOnBuild>
<LangVersion>7.3</LangVersion>
<PackageId>BlazorDB</PackageId>
<Version>0.0.2</Version>
<Version>0.0.3</Version>
<Authors>Chanan Braunstein</Authors>
<Title>Blazor localStorage Database</Title>
<Description>In memory, persisted to localstorage, database for .net Blazor browser framework</Description>
Expand Down

0 comments on commit 54c575e

Please sign in to comment.