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

Releases: chanan/BlazorDB

v1.0.0-preview7

25 Jul 18:32
Compare
Choose a tag to compare
v1.0.0-preview7 Pre-release
Pre-release

Update to aspnet core 3.0.0-preview7.19365.7

BREAKING CHANGE Because the json sealizer changed in this version old files in local storage will not work with this version.

Updated to asp.net core 3 preview 4

23 Apr 16:41
Compare
Choose a tag to compare
Pre-release
v1.0.0-preview4

version 1.0.0-preview4

Blazor 0.8

03 Mar 05:03
Compare
Choose a tag to compare
Blazor 0.8 Pre-release
Pre-release
v0.8.0

Blazor 0.8

v0.7.1

06 Dec 17:00
Compare
Choose a tag to compare
v0.7.1 Pre-release
Pre-release

Fixed an issue #15 where calling Initialize twice in succession blanks out any changes that were done in the context and not saved yet.

v0.7.0

06 Dec 16:22
Compare
Choose a tag to compare
v0.7.0 Pre-release
Pre-release

Updated to Blazor v0.7.0

Breaking Change

You must call initialize on Context prior to use. I hope to remove this in a future version.

protected async override Task OnInitAsync()
{
    await Context.Initialize();
}

v0.2.0

08 Jun 04:16
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

Update to Blazor 0.4.0

v0.1.3

06 Jun 03:36
Compare
Choose a tag to compare
v0.1.3 Pre-release
Pre-release

Validations:

  • [Required]
  • [MaxLength(int)]

v0.1.2

02 Jun 16:25
Compare
Choose a tag to compare
v0.1.2 Pre-release
Pre-release

Added:

  • Added LogToConsole to StorageContext and StorageSet
  • Added a sample showing integration between Blazor.Fluxor and BlazorDB

v0.1.1

01 Jun 01:48
Compare
Choose a tag to compare
v0.1.1 Pre-release
Pre-release

When deleting a model that is used by an association an exception will be thrown on SaveChanges()

v0.1.0

31 May 02:07
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

This release has a breaking change. Previous files may not load using this version.

You no longer have to explicitly save both sides of a relationship. When SaveChanges() is called, the saved models are scanned for any new relationships and they are saved as well.