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

Releases: TheEadie-Archive/LazyStorage

V0.5.1

20 May 10:35
Compare
Choose a tag to compare

Bugs Fixed

  • Id is no longer a reserved key when using a repository with a converter
  • When using Xml storage your converter's IsEqual() check will now be used for finding items rather than an internal Id

V0.5.0

19 May 13:21
Compare
Choose a tag to compare

New Features

  • Removes the dependency on System.Runtime.Serialization so that future versions can work with .Net Core. This is a breaking change, the interfaces of IStorable and IConverter have changed.
  • JSON files now have human readable white space added.

V0.4.0

20 Apr 08:59
Compare
Choose a tag to compare

New Features

  • Adds support for JSON repositories
  • XML repositories will now be split 1 file per object type. This is a breaking change.

V0.3.2

29 Jan 17:57
Compare
Choose a tag to compare

New Features

  • Allowed classes that don't have an empty constructor to be used with converter repositories

v0.3.0

22 Jan 14:17
Compare
Choose a tag to compare

New Features

  • Ability to use a converter to store any object in a repository

v0.2.0

21 Dec 14:28
Compare
Choose a tag to compare

New Features

  • XML storage repositories

v0.1.0

07 Aug 11:38
Compare
Choose a tag to compare

New Features:

  • In Memory storage (Useful for mocking out storage in tests)
  • Create a repository of any type and perform CRUD operations on it