Releases: json-api-dotnet/JsonApiDotNetCore
Releases · json-api-dotnet/JsonApiDotNetCore
v1.0.0
See P2 for more details
Breaking Changes:
- There is no longer any need to override the
Id
property onIdentifiable
. The following is a valid model class sincepublic int Id { get; set; }
will be inherited.
public class TodoItemCollection : Identifiable
{ }
- Using Attributes to define relationships
[HasMany("todo-items")]
public virtual List<TodoItem> TodoItems { get; set; }
[HasOne("collection")]
public virtual Collection Collection { get; set; }
v0.2.12 - Meta Objects
Merge pull request #38 from Research-Institute/meta-objects Meta objects
v0.2.11
Support sideloaded relationships
v0.2.10
v0.2.9
Added tests
Improved spec conformance
v0.2.8
fix(ci): configure databse in travis ci
v0.1.4
Merge pull request #17 from Research-Institute/v0.1.4-fixes Dasherize name in RouteBuilder